mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-09 12:52:56 -04:00
7 lines
104 B
Python
7 lines
104 B
Python
from flask import Flask
|
|
from app import create_app
|
|
|
|
application = Flask('app')
|
|
|
|
create_app(application)
|