Skip to content
Snippets Groups Projects
app.py 203 B
Newer Older
Ethan R Shaw's avatar
Ethan R Shaw committed
from flask import Flask
from main import create_app


app = create_app()
@app.route('/', methods = ['GET'])
def hello():
    return {'Hello, world'}

if __name__ == '__main__':
    app.run(debug = True)