from commands.base_command import Command from controllers import ScraperController class ListCommand(Command): def __init__(self, controller: ScraperController): self.controller = controller def execute(self): return self.controller.list_strategies() def undo(self): pass