categorylanri import qilish qoshildi

This commit is contained in:
Husanjonazamov
2026-03-25 19:24:42 +05:00
commit 1c4155299d
206 changed files with 8106 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
from .category import * # noqa
from .products import * # noqa

View File

@@ -0,0 +1,15 @@
# from django.core.exceptions import ValidationError
class CategoryValidator:
def __init__(self): ...
def __call__(self):
return True
class SubcategoryValidator:
def __init__(self): ...
def __call__(self):
return True

View File

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