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