Files
blog-app/routes/__init__.py
2026-08-17 17:11:27 +08:00

6 lines
153 B
Python

from .api import bp as api_bp
from .pages import bp as pages_bp
from .watchdog import bp as watchdog_bp
__all__ = ["api_bp", "pages_bp", "watchdog_bp"]