10 lines
247 B
Python
10 lines
247 B
Python
|
from fastapi import FastAPI
|
||
|
|
||
|
app = FastAPI()
|
||
|
|
||
|
|
||
|
import api.wechat
|
||
|
import api.douyin
|
||
|
|
||
|
app.include_router(api.wechat.router, prefix="/task/app/wechat", tags=["WeChat"])
|
||
|
app.include_router(api.douyin.router, prefix="/task/app/douyin", tags=["DouYin"])
|