bytes | Package bytes implements functions for the manipulation of byte slices. |
context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
errors | Package errors implements functions to manipulate errors. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/google/go-querystring/query | Package query implements encoding of structs into URL query parameters. |
github.com/hashicorp/go-cleanhttp | Package cleanhttp offers convenience utilities for acquiring "clean" http.Transport and http.Client structs. |
github.com/hashicorp/go-retryablehttp | Package retryablehttp provides a familiar HTTP client interface with automatic retries and exponential backoff. |
golang.org/x/oauth2 | Package oauth2 provides support for making OAuth2 authorized and authenticated HTTP requests, as specified in RFC 6749. |
golang.org/x/time/rate | Package rate provides a rate limiter. |
io | Package io provides basic interfaces to I/O primitives. |
io/ioutil | Package ioutil implements some I/O utility functions. |
math/rand | Package rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work. |
mime/multipart | Package multipart implements MIME multipart parsing, as defined in RFC 2046. |
net/http | Package http provides HTTP client and server implementations. |
net/url | Package url parses URLs and implements query escaping. |
os | Package os provides a platform-independent interface to operating system functionality. |
path/filepath | Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
sort | Package sort provides primitives for sorting slices and user-defined collections. |
strconv | Package strconv implements conversions to and from string representations of basic data types. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
time | Package time provides functionality for measuring and displaying time. |