forked from organicmaps/organicmaps
7 lines
134 B
Python
Executable file
7 lines
134 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import subprocess
|
|
|
|
from server.config import PORT
|
|
|
|
subprocess.call(['curl', f'http://localhost:{PORT}/kill'])
|