Files
2026-05-21 23:32:10 +00:00

13 lines
283 B
Python

from __future__ import annotations
import os
from dataclasses import dataclass
from pathlib import Path
@dataclass(slots=True)
class Settings:
app_name: str = 'Doris Barbell'
default_state_dir: Path = Path(os.environ.get('BARBELL_STATE_DIR', '/tmp/doris-barbell-state'))