mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
There are still back-calls to PHP for some of the sub-steps. These needs some larger refactoring to be moved to Python.
13 lines
371 B
Python
13 lines
371 B
Python
"""
|
|
Subcommand definitions for the command-line tool.
|
|
"""
|
|
|
|
from .setup import SetupAll
|
|
from .replication import UpdateReplication
|
|
from .api import APISearch, APIReverse, APILookup, APIDetails, APIStatus
|
|
from .index import UpdateIndex
|
|
from .refresh import UpdateRefresh
|
|
from .admin import AdminFuncs
|
|
from .freeze import SetupFreeze
|
|
from .transition import AdminTransition
|