mirror of
https://github.com/fluencelabs/aqua.git
synced 2025-03-15 19:50:51 +00:00
12 lines
248 B
Plaintext
12 lines
248 B
Plaintext
service OpH("op"):
|
||
get_str(s: string) -> string
|
||
get_arr() -> []string
|
||
identity: ⊤ -> ⊥
|
||
|
||
func registerKeyPutValue(node_id: string) -> []string:
|
||
nodes <- OpH.get_arr()
|
||
for n <- nodes par:
|
||
on n:
|
||
OpH.get_str(node_id)
|
||
<- nodes
|