mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-11 09:27:56 -04:00
8 lines
107 B
Python
8 lines
107 B
Python
|
|
from flask import Blueprint
|
||
|
|
|
||
|
|
|
||
|
|
main = Blueprint('main', __name__)
|
||
|
|
|
||
|
|
|
||
|
|
from .views import notifications, index
|