mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-04 22:17:34 +00:00
15 lines
244 B
Python
15 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 []
|