forked from cuelang/cue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
45 lines (44 loc) · 1.12 KB
/
doc.go
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
39
40
41
42
43
44
45
// Code generated by cue get go. DO NOT EDIT.
// Package http provides tasks related to the HTTP protocol.
//
// These are the supported tasks:
//
// Get: Do & {method: "GET"}
// Post: Do & {method: "POST"}
// Put: Do & {method: "PUT"}
// Delete: Do & {method: "DELETE"}
//
// Do: {
// $id: *"tool/http.Do" | "http" // http for backwards compatibility
//
// method: string
// url: string // TODO: make url.URL type
//
// request: {
// body?: bytes | string
// header: [string]: string | [...string]
// trailer: [string]: string | [...string]
// }
// response: {
// status: string
// statusCode: int
//
// body: *bytes | string
// header: [string]: string | [...string]
// trailer: [string]: string | [...string]
// }
// }
//
// // TODO: support serving once we have the cue serve command.
// // Serve: {
// // port: int
// //
// // cert: string
// // key: string
// //
// // handle: [Pattern=string]: Message & {
// // pattern: Pattern
// // }
// // }
//
package http