mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 05:35:13 +03:00
381aecb952
Avoids confusion between 'docs' and 'manual'.
13 lines
228 B
Python
13 lines
228 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
import os
|
|
|
|
sys.path.append('@PROJECT_SOURCE_DIR@')
|
|
|
|
from nominatim.cli import get_set_parser
|
|
|
|
def get_parser():
|
|
parser = get_set_parser(phpcgi_path='@PHPCGI_BIN@')
|
|
|
|
return parser.parser
|