17 lines
289 B
Python
17 lines
289 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from resources.lib import kodilogging
|
|
from resources.lib import context
|
|
|
|
import logging
|
|
import xbmcaddon
|
|
|
|
# Keep this file to a minimum, as Kodi
|
|
# doesn't keep a compiled copy of this
|
|
ADDON = xbmcaddon.Addon()
|
|
kodilogging.config()
|
|
|
|
context.run()
|
|
|
|
|