mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +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 []
|