13 lines
308 B
Python
13 lines
308 B
Python
# SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
from fastapi import APIRouter
|
|
from classquiz.routers.box_controller import web, embedded
|
|
|
|
router = APIRouter()
|
|
|
|
router.include_router(web.router, prefix="/web")
|
|
router.include_router(embedded.router, prefix="/embedded")
|