batman
This commit is contained in:
commit
acb3c7642a
23 changed files with 3940 additions and 0 deletions
8
app/routes/__init__.py
Normal file
8
app/routes/__init__.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from flask import Blueprint
|
||||
|
||||
auth_bp = Blueprint('auth', __name__, url_prefix='/auth')
|
||||
files_bp = Blueprint('files', __name__, url_prefix='/files')
|
||||
dashboard_bp = Blueprint('dashboard', __name__, url_prefix='')
|
||||
|
||||
# Import the route handlers AFTER creating the blueprints
|
||||
from app.routes import auth, files, dashboard
|
Loading…
Add table
Add a link
Reference in a new issue