6 lines
141 B
Python
6 lines
141 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
DB_PATH = Path(os.getenv('DATA_DIR', '.')) / 'voice_cache.sqlite'
|
|
BASE_URL = os.environ['BASE_URL']
|