The usage should be something like: ```python operation_context = gossip.define_contextback('name', args=(...), tags=..., ....) ``` And then for registration ``` @operation_context.register @contextmanager def my_contextmanager(arg1, arg2): ... yield .... ```