]> git.openstreetmap.org Git - nominatim.git/blob - src/nominatim_db/clicmd/__init__.py
725b4d6b52cbf92d8e7926855a245c8d51e0464a
[nominatim.git] / src / nominatim_db / clicmd / __init__.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2023 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Subcommand definitions for the command-line tool.
9 """
10 # mypy and pylint disagree about the style of explicit exports,
11 # see https://github.com/PyCQA/pylint/issues/6006.
12 # pylint: disable=useless-import-alias
13
14 from .setup import SetupAll as SetupAll
15 from .replication import UpdateReplication as UpdateReplication
16 from .index import UpdateIndex as UpdateIndex
17 from .refresh import UpdateRefresh as UpdateRefresh
18 from .add_data import UpdateAddData as UpdateAddData
19 from .admin import AdminFuncs as AdminFuncs
20 from .freeze import SetupFreeze as SetupFreeze
21 from .special_phrases import ImportSpecialPhrases as ImportSpecialPhrases