| 6 | |
| 7 | |
| 8 | class QueryService(ABC, Generic[_T]): |
| 9 | |
| 10 | @abstractmethod |
| 11 | def find_by_id(self, id_: int) -> _T | None: |
| 12 | raise NotImplementedError() |
| 13 | |
| 14 | @abstractmethod |
| 15 | def findall(self) -> Sequence[_T]: |
| 16 | raise NotImplementedError() |
nothing calls this directly
no outgoing calls
no test coverage detected