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