blob: 5827610c352f76351c3120771b5e9526f33db425 [file] [log] [blame]
// 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: {
// kind: "tool/http.Do"
//
// method: string
// url: string // TODO: make url.URL type
//
// request: {
// body: *bytes | string
// header <Name>: string | [...string]
// trailer <Name>: string | [...string]
// }
// response: {
// status: string
// statusCode: int
//
// body: *bytes | string
// header <Name>: string | [...string]
// trailer <Name>: string | [...string]
// }
// }
//
package http