mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 20:46:47 +00:00
19 lines
414 B
Python
19 lines
414 B
Python
"""sample implementation for IntegrationPlugin"""
|
|
from plugins.integration import IntegrationPluginBase, UrlsMixin
|
|
|
|
|
|
class NoIntegrationPlugin(IntegrationPluginBase):
|
|
"""
|
|
An basic integration plugin
|
|
"""
|
|
|
|
PLUGIN_NAME = "NoIntegrationPlugin"
|
|
|
|
|
|
class WrongIntegrationPlugin(UrlsMixin, IntegrationPluginBase):
|
|
"""
|
|
An basic integration plugin
|
|
"""
|
|
|
|
PLUGIN_NAME = "WrongIntegrationPlugin"
|