jellyfin-kodi/resources/lib/entrypoint/__init__.py

25 lines
659 B
Python

# -*- coding: utf-8 -*-
#################################################################################################
import logging
import xbmc
import xbmcvfs
from helper import loghandler
from jellyfin import Jellyfin
#################################################################################################
Jellyfin.set_loghandler(loghandler.LogHandler, logging.DEBUG)
loghandler.reset()
loghandler.config()
LOG = logging.getLogger('JELLYFIN.entrypoint')
#################################################################################################
from default import Events
from service import Service
from context import Context