mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
7 lines
167 B
Plaintext
7 lines
167 B
Plaintext
|
service MyOp("op"):
|
||
|
identity(s: string) -> string
|
||
|
|
||
|
func viaArr(viaAr: []string) -> string:
|
||
|
on "custom node" via viaAr:
|
||
|
p <- MyOp.identity("123")
|
||
|
<- p
|