Source code for todd.runners.registries

__all__ = [
    'CallbackRegistry',
    'StrategyRegistry',
    'MetricRegistry',
]

from ..registries import RunnerRegistry


[docs] class CallbackRegistry(RunnerRegistry): pass
[docs] class StrategyRegistry(RunnerRegistry): pass
[docs] class MetricRegistry(RunnerRegistry): pass