wundertile/app/blueprints.py
2019-04-24 17:51:45 +02:00

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]