mirror of
https://github.com/anxdpanic/plugin.video.youtube.git
synced 2026-01-12 20:31:23 -08:00
- Avoids the situation where actions can't be performed if the plugin can't start e.g. if access_manager.json is corrupt
17 lines
440 B
Python
17 lines
440 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 import youtube
|
|
from youtube_plugin.kodion import runner
|
|
|
|
__provider__ = youtube.Provider()
|
|
runner.run(__provider__)
|