mirror of
https://github.com/GSA/notifications-api.git
synced 2026-01-30 14:31:57 -05:00
Initial version of the notify-notifications-api
This commit is contained in:
11
application.py
Normal file
11
application.py
Normal 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)
|
||||
Reference in New Issue
Block a user