mirror of
https://github.com/jellyfin/jellyfin-mpv-shim.git
synced 2024-11-23 14:09:57 +00:00
17 lines
344 B
Python
17 lines
344 B
Python
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 run(self):
|
|
while True:
|
|
time.sleep(1)
|
|
|
|
userInterface = UserInterface()
|