8 lines
153 B
Python
8 lines
153 B
Python
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
from app.api import api_test
|
||
|
|
|
||
|
|
router = APIRouter()
|
||
|
|
|
||
|
|
router.include_router(api_test.router, tags=["test"], prefix="/test")
|