9 lines
149 B
Python
9 lines
149 B
Python
from folkugat_web.api.router import get_router
|
|
|
|
from . import index
|
|
|
|
router = get_router()
|
|
router.include_router(index.router)
|
|
|
|
__all__ = ["router"]
|