| bytes | Package bytes implements functions for the manipulation of byte slices. |
| compress/gzip | Package gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952. |
| compress/zlib | Package zlib implements reading and writing of zlib format compressed data, as specified in RFC 1950. |
| encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
| encoding/xml | Package xml implements a simple XML 1.0 parser that understands XML name spaces. |
| 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/emicklei/go-restful/log | |
| io | Package io provides basic interfaces to I/O primitives. |
| io/ioutil | Package ioutil implements some I/O utility functions. |
| net/http | Package http provides HTTP client and server implementations. |
| 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. |
| 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. |