mirror of
https://github.com/Redume/Kekkai-web.git
synced 2024-11-21 15:56:23 +03:00
14 lines
376 B
Python
14 lines
376 B
Python
from fastapi.staticfiles import StaticFiles
|
|
from starlette.responses import FileResponse
|
|
from fastapi import FastAPI
|
|
|
|
from src.routes import index
|
|
|
|
app = FastAPI()
|
|
app.include_router(index.router)
|
|
app.mount('/static/', StaticFiles(directory='./src/web/static/'))
|
|
|
|
|
|
@app.exception_handler(404)
|
|
async def not_found(req, __):
|
|
return FileResponse('./src/web/errors/404.html')
|