Building webapp wrapper

This commit is contained in:
Fabio Manganiello 2021-01-24 00:55:49 +01:00
parent a5e52e4e18
commit ee15511c47
6 changed files with 12 additions and 3 deletions

8
app/__init__.py Normal file
View file

@ -0,0 +1,8 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def test():
return 'It works!'

0
app/__main__.py Normal file
View file