Spaces:
Running
Running
File size: 250 Bytes
04ffec9 |
1 2 3 4 5 6 7 8 9 10 11 |
from speakers.common.registry import registry
import os
def get_abs_path(rel_path):
return os.path.join(registry.get_path("library_root"), rel_path)
def get_tmp_path(rel_path):
return os.path.join(registry.get_path("tmp_root"), rel_path)
|