Zaws / screenshot /main.py
SilentWraith's picture
Initial commit
6f8bc75
raw
history blame
249 Bytes
import uvicorn
from fastapi import FastAPI
from routers.screenshot import routers as screenshot_router
app = FastAPI()
app.include_router(screenshot_router)
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000) # noqa: S104