octoprint-liveleak/octoprint_liveleak/__init__.py

15 lines
380 B
Python
Raw Permalink Normal View History

2023-09-24 14:39:30 +00:00
import octoprint.plugin
__plugin_name__ = "LiveLeak"
__plugin_version__ = "1.0.0"
__plugin_description__ = "Insert a LiveLeak logo into the camera feed"
__plugin_pythoncompat__ = ">=3.7,<4"
class LiveLeakPlugin(octoprint.plugin.AssetPlugin):
def get_assets(self):
return dict(
css=['liveleak.css']
)
__plugin_implementation__ = LiveLeakPlugin()