in planner/config.py [0:0]
def get_task_fetcher(short_name: str, *args, **kwargs) -> TaskFetcher:
"""
This is the official registry of all available task fetchers
"""
registry = {
"hard_coded": HardCodedTaskFetcher,
}
return registry[short_name](*args, **kwargs)