added API-Endpoints for files

This commit is contained in:
Niklas Mueller 2024-06-18 20:21:04 +02:00
parent 95f8488227
commit 16e5004228
7 changed files with 207 additions and 1 deletions

View file

@ -1,7 +1,14 @@
# config.py
import os
class Settings:
API_V1_STR: str = "/api"
# OS_INTERFACE: str = ""
BUCKET: str = os.getenv("BUCKET_NAME")
BUCKET_FILE_PATH: str = os.getenv("BUCKET_FILE_PATH")
settings = Settings()