12 lines
220 B
Python
12 lines
220 B
Python
from fastapi.responses import ORJSONResponse
|
|
|
|
|
|
class Settings:
|
|
ROOT_PATH = "/api"
|
|
DEFAULT_RESPONSE_CLASS = ORJSONResponse
|
|
ORIGINS = ["http://localhost:3000"]
|
|
STATIC_DIR = "static"
|
|
|
|
|
|
settings = Settings()
|