6 lines
164 B
Python
6 lines
164 B
Python
#!/usr/bin/env python3
|
|
# Headless sim daemon only. POST /simulate with JSON body.
|
|
from scripts.pyfa_cli_stats import _run_http_server
|
|
|
|
_run_http_server(9123, None)
|