jellyfin-mpv-shim/jellyfin_mpv_shim/cli_mgr.py

19 lines
351 B
Python
Raw Normal View History

2020-01-16 22:56:17 +00:00
import time
from .clients import clientManager
class UserInterface(object):
def __init__(self):
self.open_player_menu = lambda: None
self.stop = lambda: None
def login_servers(self):
clientManager.cli_connect()
def start(self):
pass
def stop(self):
pass
2020-01-16 22:56:17 +00:00
userInterface = UserInterface()