1 # SPDX-License-Identifier: GPL-3.0-or-later
3 # This file is part of Nominatim. (https://nominatim.org)
5 # Copyright (C) 2024 by the Nominatim developer community.
6 # For a full list of authors see the git log.
8 Implementation of API version v1 (aka the legacy version).
11 #pylint: disable=useless-import-alias
13 from .server_glue import ROUTES as ROUTES
15 from . import format as _format
17 list_formats = _format.dispatch.list_formats
18 supports_format = _format.dispatch.supports_format
19 format_result = _format.dispatch.format_result