Building webapp wrapper
This commit is contained in:
parent
a5e52e4e18
commit
ee15511c47
6 changed files with 12 additions and 3 deletions
8
app/__init__.py
Normal file
8
app/__init__.py
Normal 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
0
app/__main__.py
Normal file
Loading…
Add table
Add a link
Reference in a new issue