mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-03 17:10:10 +08:00
9 lines
278 B
Python
9 lines
278 B
Python
# -*- coding: utf-8 -*-
|
|
from app.api.v1 import tasks, tasks2
|
|
from fastapi import APIRouter
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"])
|
|
|
|
api_router.include_router(tasks2.router, prefix="/task2", tags=["task2"]) # temporary
|