mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-09 06:33:52 -05:00
7 lines
88 B
Python
7 lines
88 B
Python
|
|
from flask import Flask
|
||
|
|
from app import create_app
|
||
|
|
|
||
|
|
app = Flask('app')
|
||
|
|
|
||
|
|
create_app(app)
|