1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-kodi.git synced 2025-03-20 18:38:11 +00:00
jellyfin-kodi/resources/lib/entrypoint/__init__.py
angelblue05 aac8229f9b Plug in dynamic packages
For now, Kodi will need to be restarted to load from the dynamic package every time there is an update to the package.
2018-09-07 03:22:08 -05:00

23 lines
624 B
Python

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