forked from hans/Nominatim
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.")
|
|
|