added project stubs
This commit is contained in:
11
api/app.py
Normal file
11
api/app.py
Normal file
@@ -0,0 +1,11 @@
|
||||
#!flask/bin/python
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def index():
|
||||
return "Hello, TFM!"
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(debug=True)
|
||||
Reference in New Issue
Block a user