refactor(analyzer): rewrite analyze playability
This commit is contained in:
parent
04e5a7e404
commit
dc30d8836b
2 changed files with 18 additions and 25 deletions
|
@ -1,4 +1,9 @@
|
|||
from os import getenv
|
||||
|
||||
from ._utils import run_
|
||||
|
||||
LIQUIDSOAP = getenv("LIQUIDSOAP_PATH", "liquidsoap")
|
||||
|
||||
|
||||
def _liquidsoap(*args, **kwargs):
|
||||
return run_(LIQUIDSOAP, *args, **kwargs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue