mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 08:56:57 -05:00
18 lines
365 B
Python
18 lines
365 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
# pylama:ignore=E402
|
|
from gevent import monkey
|
|
monkey.patch_all()
|
|
import os
|
|
import sys
|
|
import pathlib
|
|
from multiprocessing import freeze_support
|
|
|
|
from fHDHR.cli import run
|
|
|
|
SCRIPT_DIR = pathlib.Path(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
if __name__ == '__main__':
|
|
freeze_support()
|
|
sys.exit(run.main(SCRIPT_DIR))
|