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 (ASGIAdaptor as ASGIAdaptor,
14 EndpointFunc as EndpointFunc,
17 from . import format as _format
19 list_formats = _format.dispatch.list_formats
20 supports_format = _format.dispatch.supports_format
21 format_result = _format.dispatch.format_result