replace eb200 with runds
This commit is contained in:
18
owrx/source/runds.py
Normal file
18
owrx/source/runds.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from owrx.source.connector import ConnectorSource
|
||||
from owrx.command import Argument, Flag, Option
|
||||
|
||||
|
||||
class RundsSource(ConnectorSource):
|
||||
def getCommandMapper(self):
|
||||
return (
|
||||
super()
|
||||
.getCommandMapper()
|
||||
.setBase("runds_connector")
|
||||
.setMappings(
|
||||
{
|
||||
"long": Flag("-l"),
|
||||
"remote": Argument(),
|
||||
"protocol": Option("-m"),
|
||||
}
|
||||
)
|
||||
)
|
||||
Reference in New Issue
Block a user