mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-24 20:28:06 +02:00
11 lines
327 B
Python
11 lines
327 B
Python
from flask import request
|
|||
from step_a import step_a
|
|||
|
|||
|
|||
def handler():
|
|||
user_cmd = request.args.get("cmd")
|
|||
# Taint enters the 8-function SCC at step_a. With Jacobi
|
|||
# iteration, the step_h → subprocess.run flow needs eight SCC
|
|||
# fix-point iterations to propagate back into step_a's summary.
|
|||
step_a(user_cmd)
|