-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update outgoing-http-requests to functional syntax
- Loading branch information
Showing
4 changed files
with
42 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
type rec_1 = record {value:text; name:text}; | ||
type rec_0 = record {status:nat; body:vec nat8; headers:vec rec_1}; | ||
type rec_3 = record {value:text; name:text}; | ||
type rec_2 = record {status:nat; body:vec nat8; headers:vec rec_3}; | ||
type rec_6 = record {value:text; name:text}; | ||
type rec_5 = record {status:nat; body:vec nat8; headers:vec rec_6}; | ||
type rec_4 = record {context:vec nat8; response:rec_5}; | ||
type rec_8 = record {value:text; name:text}; | ||
type rec_7 = record {status:nat; body:vec nat8; headers:vec rec_8}; | ||
type rec_52 = record {value:text; name:text}; | ||
type rec_51 = record {status:nat; body:vec nat8; headers:vec rec_52}; | ||
type rec_54 = record {value:text; name:text}; | ||
type rec_53 = record {status:nat; body:vec nat8; headers:vec rec_54}; | ||
type rec_57 = record {value:text; name:text}; | ||
type rec_56 = record {status:nat; body:vec nat8; headers:vec rec_57}; | ||
type rec_55 = record {context:vec nat8; response:rec_56}; | ||
type rec_59 = record {value:text; name:text}; | ||
type rec_58 = record {status:nat; body:vec nat8; headers:vec rec_59}; | ||
service: () -> { | ||
xkcd: () -> (rec_0); | ||
xkcdRaw: () -> (rec_2); | ||
xkcdTransform: (rec_4) -> (rec_7) query; | ||
xkcd: () -> (rec_51); | ||
xkcdRaw: () -> (rec_53); | ||
xkcdTransform: (rec_55) -> (rec_58) query; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters