19 lines
832 B
Python
19 lines
832 B
Python
# coding=utf-8
|
|
from __future__ import absolute_import
|
|
|
|
### (Don't forget to remove me)
|
|
# This is a basic skeleton for your plugin's __init__.py. You probably want to adjust the class name of your plugin
|
|
# as well as the plugin mixins it's subclassing from. This is really just a basic skeleton to get you started.
|
|
|
|
import octoprint.plugin
|
|
|
|
class SkeletonPlugin(octoprint.plugin.TemplatePlugin):
|
|
# TODO Implement me!
|
|
pass
|
|
|
|
# If you want your plugin to be registered within OctoPrint under a different name than what you defined in setup.py
|
|
# ("OctoPrint-PluginSkeleton"), you may define that here. Same goes for the other metadata derived from setup.py that
|
|
# can be overwritten via __plugin_xyz__ control properties. See the documentation for that.
|
|
__plugin_name__ = "Plugin Skeleton"
|
|
__plugin_implementation__ = SkeletonPlugin()
|