Coverage for app/domain/probe/commands/command.py: 86%

7 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-06-16 20:06 +0000

1from abc import ABC, abstractmethod 

2 

3from app.domain.probe.entities.probe import Probe 

4from app.domain.probe.entities.grid import Grid 

5 

6 

7class Command(ABC): 

8 @abstractmethod 

9 def execute(self, probe: Probe, grid: Grid) -> Probe: 

10 pass