|
1
|
from fastapi import APIRouter |
|
2
|
|
|
3
|
from app.schedulers.routes.scheduler import scheduler_router |
|
4
|
|
|
5
|
# Instantiate the APIRouter |
|
6
|
router = APIRouter() |
|
7
|
|
|
8
|
# Include the Office365 related routes |
|
9
|
router.include_router(scheduler_router, prefix="/scheduler", tags=["Scheduler"]) |