mirror of
https://github.com/github/codeql.git
synced 2026-03-02 13:53:42 +01: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)
|