mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-17 15:00:24 +00:00
10 lines
229 B
Python
10 lines
229 B
Python
def register(model_cls, config_cls=None):
|
|
from eav.registry import Registry
|
|
|
|
Registry.register(model_cls, config_cls)
|
|
|
|
|
|
def unregister(model_cls):
|
|
from eav.registry import Registry
|
|
|
|
Registry.unregister(model_cls)
|