mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
9 lines
244 B
Python
9 lines
244 B
Python
__version__ = '0.14.1'
|
|
|
|
def register(model_cls, config_cls=None):
|
|
from .registry import Registry
|
|
Registry.register(model_cls, config_cls)
|
|
|
|
def unregister(model_cls):
|
|
from .registry import Registry
|
|
Registry.unregister(model_cls)
|