mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 06:22:08 +03:00
f6e894a53a
Hide the former PHP functions in a transition command until they are removed.
12 lines
343 B
Python
12 lines
343 B
Python
"""
|
|
Subcommand definitions for the command-line tool.
|
|
"""
|
|
|
|
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
|