6 lines
144 B
Python
6 lines
144 B
Python
#!/usr/bin/env python3
|
|
# Sim server. POST /simulate with JSON body.
|
|
from scripts.pyfa_sim import _run_http_server
|
|
|
|
_run_http_server(9123, None)
|