mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-29 05:30:48 -04:00
Initial creation of notify-admin-frontend
This commit is contained in:
10
application.py
Normal file
10
application.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def index():
|
||||
return 'Hello from notify-admin-frontend'
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(port=6012)
|
||||
Reference in New Issue
Block a user