Fix bot not posting rss feeds

This commit is contained in:
2024-05-21 19:28:48 +02:00
parent 5685d5ecf2
commit 716bdf34c9

View File

@ -64,7 +64,7 @@ async def lifespan(app: FastAPI) -> typing.AsyncGenerator[None, None]:
scheduler.shutdown(wait=True)
app: FastAPI = FastAPI()
app: FastAPI = FastAPI(lifespan=lifespan)
app.mount("/static", StaticFiles(directory="discord_rss_bot/static"), name="static")
templates: Jinja2Templates = Jinja2Templates(directory="discord_rss_bot/templates")