8 lines
175 B
Python
8 lines
175 B
Python
from fastapi import APIRouter
|
|
|
|
from . import schedule, weather
|
|
|
|
router = APIRouter(prefix="/api")
|
|
router.include_router(weather.router)
|
|
router.include_router(schedule.router)
|