mirror of
https://github.com/anxdpanic/plugin.video.youtube.git
synced 2025-12-06 02:30:50 -08:00
- Remove import alias of concrete implementations of kodion classes - Remove unused symbols from kodion module __all__ statement - Merge kodion.ui.xbmc.info_labels into kodion.ui.xbmc.xbmc_items - Move combined kodion.ui.xbmc.xbmc_items to kodion.items.xbmc.xbmc_items - Rename kodion.runner to kodion.plugin_runner - Rename kodion.service to kodion.service_runner - Move youtube_plugin.script_actions to kodion.script_actions - Rename plugin.abstract_provider_runner.AbstractProviderRunner to plugin.abstract_plugin.AbstractPlugin - Rename plugin.xbmc.xbmc_plugin.XbmcRunner to plugin.xbmc.xbmc_plugin.XbmcPlugin
16 lines
376 B
Python
16 lines
376 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
|
|
Copyright (C) 2014-2016 bromix (plugin.video.youtube)
|
|
Copyright (C) 2016-2018 plugin.video.youtube
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only
|
|
See LICENSES/GPL-2.0-only for more information.
|
|
"""
|
|
|
|
from __future__ import absolute_import, division, unicode_literals
|
|
|
|
from youtube_plugin.kodion import service_runner
|
|
|
|
|
|
service_runner.run()
|