django-eav2/eav/__init__.py

10 lines
263 B
Python

def register(model_cls, config_cls=None):
from eav.registry import Registry # noqa: PLC0415
Registry.register(model_cls, config_cls)
def unregister(model_cls):
from eav.registry import Registry # noqa: PLC0415
Registry.unregister(model_cls)