mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 04:26:44 +00:00
17 lines
288 B
Python
17 lines
288 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class InvenTreePlugin():
|
|
"""
|
|
Base class for a Barcode plugin
|
|
"""
|
|
|
|
# Override the plugin name for each concrete plugin instance
|
|
PLUGIN_NAME = ''
|
|
|
|
def plugin_name(self):
|
|
return self.PLUGIN_NAME
|
|
|
|
def __init__(self):
|
|
pass
|