mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
25 lines
643 B
Python
25 lines
643 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.reset()
|
||
|
loghandler.config()
|
||
|
LOG = logging.getLogger('EMBY.entrypoint')
|
||
|
|
||
|
#################################################################################################
|
||
|
|
||
|
from default import Events
|
||
|
from service import Service
|
||
|
from context import Context
|