12 lines
225 B
Python
12 lines
225 B
Python
|
# 主程序入口
|
||
|
from src.api.v1.router import v1_router
|
||
|
from fastapi import FastAPI
|
||
|
import uvicorn
|
||
|
|
||
|
app = FastAPI()
|
||
|
app.include_router(v1_router)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
uvicorn.run(app, host='0.0.0.0', port=8000)
|
||
|
|