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. |
crypto/rand | Package rand implements a cryptographically secure random number generator. |
encoding/binary | Package binary implements simple translation between numbers and byte sequences and encoding and decoding of varints. |
encoding/hex | Package hex implements hexadecimal encoding and decoding. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/google/martian/v3 | Package martian provides an HTTP/1.1 proxy with an API for configurable request and response modifiers. |
github.com/google/martian/v3/log | Package log provides a universal logger for martian packages. |
github.com/google/martian/v3/proxyutil | Package proxyutil provides functionality for building proxies. |
golang.org/x/net/websocket | Package websocket implements a client and server for the WebSocket protocol as specified in RFC 6455. |
io | Package io provides basic interfaces to I/O primitives. |
net/http | Package http provides HTTP client and server implementations. |
strconv | Package strconv implements conversions to and from string representations of basic data types. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
sync/atomic | Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms. |
time | Package time provides functionality for measuring and displaying time. |