mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
15 lines
357 B
Python
15 lines
357 B
Python
"""
|
|
Provides the fronting for the Nominatim tools, command line and environment
|
|
parsing.
|
|
"""
|
|
|
|
def setup(**kwargs):
|
|
print("Functions for creating a Nominatim database and importing data.")
|
|
|
|
def update(**kwargs):
|
|
print("Functions for updating a Nominatim database.")
|
|
|
|
def admin(**kwargs):
|
|
print("Functions for maintaining a Nomiantim database.")
|
|
|