django-eav2/eav/models/__init__.py

26 lines
562 B
Python
Raw Normal View History

2023-11-30 18:05:20 +00:00
"""
This module defines the four concrete, non-abstract models:
* :class:`Value`
* :class:`Attribute`
* :class:`EnumValue`
* :class:`EnumGroup`.
Along with the :class:`Entity` helper class and :class:`EAVModelMeta`
optional metaclass for each eav model class.
"""
from .attribute import Attribute
from .entity import EAVModelMeta, Entity
from .enum_group import EnumGroup
from .enum_value import EnumValue
from .value import Value
__all__ = [
"Attribute",
"EnumGroup",
"EnumValue",
"Value",
"Entity",
"EAVModelMeta",
]