nyx/tests/dynamic_fixtures/spec_strategies/callgraph_entry_http.py
2026-06-05 10:16:30 -05:00

9 lines
242 B
Python

# Fixture: spec derived via FromCallgraphEntry (rule id matches `*.http.*`,
# entry point classified as HttpRoute).
from flask import Flask, request
app = Flask(__name__)
@app.route("/echo")
def echo():
return request.args.get("q", "")