from abc import ABC, abstractmethod
from Copilot.numericLayer.Core.SignalInsight import SignalInsight


class baseSignalFilter(ABC):

    @abstractmethod
    def should_pass(self, signal:SignalInsight) -> bool:
        pass


