15 lines
380 B
Python
15 lines
380 B
Python
|
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()
|