feat(routes/__init__.py): add __init__.py

This commit is contained in:
2025-08-25 19:32:24 +02:00
parent d56256f681
commit c1e20e5524

View File

@@ -0,0 +1,5 @@
from .auth import auth_bp
from .index import index_bp
from .panel import panel_bp
__all__ = ["auth_bp", "index_bp", "panel_bp"]