Initial version of the notify-notifications-api

This commit is contained in:
Rebecca Law
2015-11-18 17:02:25 +00:00
parent b040e4173a
commit 3d59c72e17
11 changed files with 73 additions and 0 deletions

11
application.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello from notify-notifications-api'
if __name__ == '__main__':
app.run(port=6011)