You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
239 B
10 lines
239 B
"""Cannot be part ot __init__.py because it must be executed AFTER imports"""
|
|
from flask import Flask
|
|
|
|
from . import admin
|
|
from . import permissions
|
|
|
|
|
|
def init_app(app: Flask):
|
|
admin.init_app(app=app)
|
|
permissions.init_app(app=app)
|
|
|