bufio | Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
bytes | Package bytes implements functions for the manipulation of byte slices. |
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/davecgh/go-spew/spew | Package spew implements a deep pretty printer for Go data structures to aid in debugging. |
github.com/pmezard/go-difflib/difflib | Package difflib is a partial port of Python difflib module. |
github.com/stretchr/testify/assert/yaml | Package yaml is just an indirection to handle YAML deserialization. |
math | Package math provides basic constants and mathematical functions. |
net/http | Package http provides HTTP client and server implementations. |
net/http/httptest | Package httptest provides utilities for HTTP testing. |
net/url | Package url parses URLs and implements query escaping. |
os | Package os provides a platform-independent interface to operating system functionality. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
regexp | Package regexp implements regular expression search. |
runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
runtime/debug | Package debug contains facilities for programs to debug themselves while they are running. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
time | Package time provides functionality for measuring and displaying time. |
unicode | Package unicode provides data and functions to test some properties of Unicode code points. |
unicode/utf8 | Package utf8 implements functions and constants to support text encoded in UTF-8. |