mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-14 00:52:55 -05:00
11 lines
174 B
Python
11 lines
174 B
Python
|
|
from flask import Flask
|
||
|
|
|
||
|
|
app = Flask(__name__)
|
||
|
|
|
||
|
|
@app.route('/')
|
||
|
|
def index():
|
||
|
|
return 'Hello from notify-admin-frontend'
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
app.run(port=6012)
|