mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 12:36:45 +00:00
12 lines
267 B
Python
12 lines
267 B
Python
"""sample implementation for IntegrationPlugin"""
|
|
from plugin.integration import IntegrationPluginBase
|
|
|
|
aaa = bb
|
|
|
|
class BrokenIntegrationPlugin(IntegrationPluginBase):
|
|
"""
|
|
An very broken integration plugin
|
|
"""
|
|
|
|
PLUGIN_NAME = "BrokenIntegrationPlugin"
|