make wsprnet and pskreporter settings work from the web config

This commit is contained in:
Jakob Ketterl
2021-04-07 17:54:14 +02:00
parent ebd4d93908
commit 5487861da1
6 changed files with 92 additions and 70 deletions

View File

@@ -0,0 +1,15 @@
from abc import ABC, abstractmethod
class Reporter(ABC):
@abstractmethod
def stop(self):
pass
@abstractmethod
def spot(self, spot):
pass
@abstractmethod
def getSupportedModes(self):
return []