mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-27 00:49:55 +03:00
13 lines
228 B
Cheetah
13 lines
228 B
Cheetah
|
#!/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
|