openwebrx-clone/owrx/source/eb200.py
2020-11-30 00:34:44 +01:00

15 lines
353 B
Python

from owrx.source.connector import ConnectorSource
from owrx.command import Argument
class Eb200Source(ConnectorSource):
def getCommandMapper(self):
return (
super()
.getCommandMapper()
.setBase("eb200_connector")
.setMappings({
"remote": Argument(),
})
)