mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-17 06:50:24 +00:00
9 lines
243 B
Python
9 lines
243 B
Python
__version__ = '0.9.2'
|
|
|
|
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)
|