mirror of
https://github.com/Quad4-Software/Reticulum-Go
synced 2026-08-29 23:48:44 -04:00
10 lines
164 B
Python
10 lines
164 B
Python
|
|
# clean python module
|
||
|
|
|
||
|
|
def good_path(dest):
|
||
|
|
return Transport.await_path(dest)
|
||
|
|
|
||
|
|
class Transport:
|
||
|
|
@staticmethod
|
||
|
|
def await_path(dest):
|
||
|
|
return True
|