Files
blog.pyaqa.ru/app/main.py
Sergey Vanyushkin af17b5b3bf
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/push/lints Pipeline was successful
lint pipe fixes
2026-04-19 23:16:09 +03:00

23 lines
351 B
Python

from contextlib import asynccontextmanager
import uvicorn
from fastapi import FastAPI
@asynccontextmanager
async def lifespan(app: FastAPI):
yield
def app_factory():
app = FastAPI(lifespan=lifespan)
return app
def main():
uvicorn.run(app_factory, factory=True, host="0.0.0.0", port=8000)
if __name__ == "__main__":
main()