mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-02-20 06:14:22 +01:00
16 lines
244 B
Python
16 lines
244 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
|
||
|
|
|
||
|
|
class Reporter(ABC):
|
||
|
|
@abstractmethod
|
||
|
|
def stop(self):
|
||
|
|
pass
|
||
|
|
|
||
|
|
@abstractmethod
|
||
|
|
def spot(self, spot):
|
||
|
|
pass
|
||
|
|
|
||
|
|
@abstractmethod
|
||
|
|
def getSupportedModes(self):
|
||
|
|
return []
|