added project stubs

This commit is contained in:
Senad Uka
2015-12-18 10:59:24 +01:00
parent 86737d1bbb
commit 5b8282935f
6 changed files with 26 additions and 0 deletions

11
api/app.py Normal file
View 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)