mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-07-20 13:28:59 +00:00
25 lines
710 B
Python
25 lines
710 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import division, absolute_import, print_function, unicode_literals
|
|
|
|
#################################################################################################
|
|
|
|
from entrypoint import Context # noqa: E402
|
|
from helper import LazyLogger # noqa: E402
|
|
|
|
#################################################################################################
|
|
|
|
LOG = LazyLogger(__name__)
|
|
|
|
#################################################################################################
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
LOG.debug("--->[ context ]")
|
|
|
|
try:
|
|
Context(True)
|
|
except Exception as error:
|
|
LOG.exception(error)
|
|
|
|
LOG.info("---<[ context ]")
|