8 lines
211 B
Python
8 lines
211 B
Python
"""gather blueprints from modules for easier registering"""
|
|
|
|
from app.routes.auth import auth_bp
|
|
from app.routes.tiles import tiles_bp
|
|
from app.routes.map import map_bp
|
|
|
|
BLUEPRINTS = [auth_bp, tiles_bp, map_bp]
|