mirror of
https://github.com/github/codeql.git
synced 2026-06-08 14:42:30 +02:00
10 lines
124 B
Python
10 lines
124 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/crash')
|
|
def main():
|
|
raise Exception()
|
|
|
|
app.run(debug=True)
|