django-eav2/eav/__init__.py

10 lines
244 B
Python
Raw Permalink Normal View History

2021-04-23 19:08:07 +00:00
__version__ = '0.14.1'
2010-09-27 13:28:52 +00:00
def register(model_cls, config_cls=None):
2018-04-06 11:59:51 +00:00
from .registry import Registry
2010-09-27 13:28:52 +00:00
Registry.register(model_cls, config_cls)
def unregister(model_cls):
2018-04-06 11:59:51 +00:00
from .registry import Registry
2010-09-27 13:28:52 +00:00
Registry.unregister(model_cls)