11 lines
281 B
Python
11 lines
281 B
Python
from fastapi import FastAPI
|
|
from 项目分层实战.api.order_api import order_api
|
|
|
|
app = FastAPI()
|
|
|
|
app.include_router(order_api,tags=['订单接口'],prefix='/orders')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
import uvicorn
|
|
uvicorn.run("main:app",host='0.0.0.0',port=12345) |