17 lines
293 B
Python
17 lines
293 B
Python
from fastapi import FastAPI
|
|
from api.example import example_router
|
|
import uvicorn
|
|
app = FastAPI()
|
|
|
|
#-------------张昕浩---------------
|
|
app.include_router(example_router)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#-----------主程序----------------
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(app, host="0.0.0.0", port=23333) |