1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
interface http {
type http-status = u16;
type body = list<u8>;
type headers = list<tuple<string, string>>;
type uri = string;
enum method {
get,
post,
put,
delete,
head,
patch,
options
}
record request {
method: method,
uri: uri,
headers: headers,
body: option<body>,
}
record response {
status: http-status,
headers: option<headers>,
body: option<body>,
}
enum error {
success,
destination-not-allowed,
invalid-url,
request-error,
runtime-error,
too-many-requests,
}
}