5 lines
126 B
Python
5 lines
126 B
Python
from .api import api_bp
|
|
from .health import health_bp
|
|
from .home import home_bp
|
|
|
|
__all__ = ["api_bp", "health_bp", "home_bp"]
|