mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-17 06:50:24 +00:00
25 lines
562 B
Python
25 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",
|
|
"EAVModelMeta",
|
|
"Entity",
|
|
"EnumGroup",
|
|
"EnumValue",
|
|
"Value",
|
|
]
|