You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
211 B
Python
8 lines
211 B
Python
6 years ago
|
"""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]
|