astrXbian/.install/.kodi/addons/plugin.video.youtube/resources/lib/youtube_plugin/kodion/json_store/__init__.py

16 lines
348 B
Python

# -*- coding: utf-8 -*-
"""
Copyright (C) 2018-2018 plugin.video.youtube
SPDX-License-Identifier: GPL-2.0-only
See LICENSES/GPL-2.0-only for more information.
"""
from .json_store import JSONStore
from .api_keys import APIKeyStore
from .login_tokens import LoginTokenStore
__all__ = ['JSONStore', 'APIKeyStore', 'LoginTokenStore']