8 lines
155 B
Python
8 lines
155 B
Python
from nimbus.components.data.iterator import Iterator
|
|
|
|
dedumper_dict = {}
|
|
|
|
|
|
def register(type_name: str, cls: Iterator):
|
|
dedumper_dict[type_name] = cls
|