13 lines
283 B
Python
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'))
|
|
|