17 lines
598 B
Python
17 lines
598 B
Python
from os import makedirs, sep
|
|
from modules.app import app
|
|
from modules.utils import *
|
|
from modules.extensions_loader import dynamic_import_from_src
|
|
from fastapi.responses import FileResponse
|
|
|
|
makedirs(f"data{sep}users", exist_ok=True)
|
|
|
|
|
|
@app.get("/favicon.ico", response_class=FileResponse, include_in_schema=False)
|
|
async def favicon():
|
|
return FileResponse("favicon.ico")
|
|
|
|
|
|
#=================================================================================
|
|
dynamic_import_from_src("requests", star_import = True)
|
|
#================================================================================= |