app

parent f130a100
from flask import Flask
app = Flask(__name__)
app.config['SECRET_KEY'] = 'secret-key'
from routes import *
if __name__ == '__main__':
app.run(debug=True)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment