mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-20 22:05:13 +00:00
17 lines
279 B
Python
17 lines
279 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class Reporter(ABC):
|
|
@abstractmethod
|
|
def stop(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def spot(self, spot):
|
|
pass
|
|
|
|
|
|
class FilteredReporter(Reporter):
|
|
@abstractmethod
|
|
def getSupportedModes(self):
|
|
return []
|