mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-29 16:30:24 +08:00
7 lines
182 B
Python
7 lines
182 B
Python
# -*- coding: utf-8 -*-
|
|
from app.api.v1 import tasks
|
|
from fastapi import APIRouter
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"])
|