mirror of
https://github.com/Redume/Kekkai-web.git
synced 2024-11-22 00:06:22 +03:00
15 lines
376 B
Python
15 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')
|