feat: barcode templates

This commit is contained in:
2024-05-09 21:30:46 +03:00
parent 87085379ed
commit bde69f9db8
14 changed files with 178 additions and 58 deletions

View File

@@ -0,0 +1,9 @@
from abc import ABC, abstractmethod
from models import Product
class BaseAttributeGetter(ABC):
@abstractmethod
def get_value(self, product: Product):
pass