mirror of
https://github.com/markqvist/Reticulum.git
synced 2026-05-03 10:57:57 -07:00
10 lines
193 B
Python
Executable File
10 lines
193 B
Python
Executable File
from FlexPE import FlexPE
|
|
|
|
class Transport:
|
|
@staticmethod
|
|
def outbound(raw):
|
|
FlexPE.outbound(raw)
|
|
|
|
@staticmethod
|
|
def registerDestination(destination):
|
|
FlexPE.addDestination(destination) |