mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
Streamlink is a CLI utility which pipes video streams from various services into a video player.
10 lines
130 B
Python
10 lines
130 B
Python
"""
|
|
$description Dummy plugin for testing
|
|
"""
|
|
|
|
from streamlink.plugin import Plugin
|
|
|
|
class DummyTV(Plugin):
|
|
|
|
__plugin__ = DummyTV
|