6 lines
129 B
Python
6 lines
129 B
Python
from .auth import auth_bp
|
|
from .index import index_bp
|
|
from .panel import panel_bp
|
|
|
|
__all__ = ["auth_bp", "index_bp", "panel_bp"]
|