mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-05 13:50:14 +00:00
15 lines
288 B
Python
Executable File
15 lines
288 B
Python
Executable File
import RNS
|
|
|
|
class Interface:
|
|
IN = False
|
|
OUT = False
|
|
FWD = False
|
|
RPT = False
|
|
name = None
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def get_hash(self):
|
|
# TODO: Maybe expand this to something more unique
|
|
return RNS.Identity.fullHash(str(self).encode("utf-8")) |