5 lines
100 B
Python
5 lines
100 B
Python
|
from pathlib import Path
|
||
|
|
||
|
CACHE_DIR = Path.cwd() / "scheduler"
|
||
|
RECORD_DIR = Path.cwd() / "recorder"
|