mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
Except for dataflow (where we have a lot of changes, and I don't want to introduce lots of merge conflicts right now).
12 lines
184 B
Python
12 lines
184 B
Python
import airspeed
|
|
from flask import Flask, request
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@route('/other')
|
|
def a():
|
|
template = request.args.get('template')
|
|
return airspeed.Template(template)
|