mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 03:13:42 -05:00
Note, isort now has default behaviour of searching recursively so we no longer need the `-rc` flag
8 lines
105 B
Python
8 lines
105 B
Python
from flask import Flask
|
|
|
|
from app import create_app
|
|
|
|
application = Flask('app')
|
|
|
|
create_app(application)
|