Attributes model added.

This commit is contained in:
Abdulaziz Axmadaliyev
2026-03-09 13:21:12 +05:00
parent ec906c2b09
commit d7c12eada3
34 changed files with 765 additions and 8 deletions

View File

@@ -0,0 +1 @@
from .attributes import * # noqa

View File

@@ -0,0 +1,22 @@
# from django.core.exceptions import ValidationError
class SizeValidator:
def __init__(self): ...
def __call__(self):
return True
class ColorValidator:
def __init__(self): ...
def __call__(self):
return True
class ProductlikeValidator:
def __init__(self): ...
def __call__(self):
return True