aqua-lib/subnet.aqua
2024-01-12 13:13:52 +01:00

18 lines
390 B
Plaintext

aqua SubnetLib declares *
data Worker:
pat_id: string
host_id: string
worker_id: ?string
data SubnetResolveResult:
-- Was call successful or not
success: bool
-- Error message. Will be null if the call is successful
error: ?string
workers: []Worker
service Subnet("subnet"):
-- Returns a list of workers by deal id
resolve(deal_id: string) -> SubnetResolveResult