mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-13 08:42:21 -05:00
12 lines
178 B
Python
12 lines
178 B
Python
|
|
from flask import Flask
|
||
|
|
|
||
|
|
app = Flask(__name__)
|
||
|
|
|
||
|
|
|
||
|
|
@app.route('/')
|
||
|
|
def index():
|
||
|
|
return 'Hello from notify-notifications-api'
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
app.run(port=6011)
|