mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-04-01 14:10:27 +00:00
26 lines
562 B
Python
26 lines
562 B
Python
|
|
"""
|
||
|
|
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",
|
||
|
|
]
|