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