mirror of
https://github.com/jellyfin/jellyfin-mpv-shim.git
synced 2024-11-23 05:59:43 +00:00
21 lines
352 B
Python
21 lines
352 B
Python
from .clients import clientManager
|
|
|
|
|
|
class UserInterface(object):
|
|
def __init__(self):
|
|
self.open_player_menu = lambda: None
|
|
self.stop = lambda: None
|
|
|
|
@staticmethod
|
|
def login_servers():
|
|
clientManager.cli_connect()
|
|
|
|
def start(self):
|
|
pass
|
|
|
|
def stop(self):
|
|
pass
|
|
|
|
|
|
user_interface = UserInterface()
|