Files
bili-sync/constants.py
2023-11-22 21:53:37 +08:00

11 lines
215 B
Python

from pathlib import Path
import os
DEFAULT_CONFIG_PATH = (
Path(__file__).parent / "config.json"
if not os.getenv("TESTING")
else Path(__file__).parent / "config.test.json"
)
FFMPEG_COMMAND = "ffmpeg"