mirror of
https://github.com/anxdpanic/plugin.video.youtube.git
synced 2026-04-12 08:41:47 -07: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
17 lines
341 B
Python
17 lines
341 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
|
|
Copyright (C) 2024-present 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
|
|
|
|
import sys
|
|
|
|
from youtube_plugin.kodion import script_actions
|
|
|
|
|
|
script_actions.run(sys.argv)
|