Source code for todd.registries.runner

__all__ = [
    'RunnerRegistry',
]

from ..bases.registries import Registry


[docs] class RunnerRegistry(Registry): pass