mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-10 15:13:40 -05:00
12 lines
173 B
Python
12 lines
173 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return 'Hello from notifications-admin'
|
|
|
|
if __name__ == '__main__':
|
|
app.run(port=6012)
|