InvenTree/InvenTree/plugin/mock/simple.py

11 lines
186 B
Python

"""Very simple sample plugin"""
from plugin import InvenTreePlugin
class SimplePlugin(InvenTreePlugin):
"""A very simple plugin."""
NAME = 'SimplePlugin'
SLUG = "simple"