mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-10-01 03:15:44 -04:00
10 lines
193 B
Python
10 lines
193 B
Python
|
from FlexPE import FlexPE
|
||
|
|
||
|
class Transport:
|
||
|
@staticmethod
|
||
|
def outbound(raw):
|
||
|
FlexPE.outbound(raw)
|
||
|
|
||
|
@staticmethod
|
||
|
def registerDestination(destination):
|
||
|
FlexPE.addDestination(destination)
|