Files
PiCopy/routes/__init__.py

18 lines
604 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""PiCopy register_routes(app): registriert alle Blueprints."""
def register_routes(app):
from routes.copy_routes import copy_bp
from routes.wifi_routes import wifi_bp
from routes.wireguard_routes import wireguard_bp
from routes.upload_routes import upload_bp
from routes.system_routes import system_bp
from routes.browse_routes import browse_bp
app.register_blueprint(copy_bp)
app.register_blueprint(wifi_bp)
app.register_blueprint(wireguard_bp)
app.register_blueprint(upload_bp)
app.register_blueprint(system_bp)
app.register_blueprint(browse_bp)