Imports of package agent

PathSynopsis
bufioPackage 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.
bytesPackage bytes implements functions for the manipulation of byte slices.
encoding/base64Package base64 implements base64 encoding as specified by RFC 4648.
encoding/jsonPackage json implements encoding and decoding of JSON as defined in RFC 7159.
flagPackage flag implements command-line flag parsing.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/armon/circbuf
github.com/armon/go-metrics
github.com/hashicorp/go-msgpack/codecHigh Performance, Feature-Rich Idiomatic Go encoding library for msgpack and binc .
github.com/hashicorp/go-syslog
github.com/hashicorp/logutilsPackage logutils augments the standard log package with levels.
github.com/hashicorp/mdns
github.com/hashicorp/memberlistmemberlist is a library that manages cluster membership and member failure detection using a gossip based protocol.
github.com/hashicorp/serf/serf
github.com/mitchellh/cli
github.com/mitchellh/mapstructurePackage mapstructure exposes functionality to convert one arbitrary Go type into another, typically to convert a map[string]interface{} into a native Go structure.
ioPackage io provides basic interfaces to I/O primitives.
io/ioutilPackage ioutil implements some I/O utility functions.
logPackage log implements a simple logging package.
netPackage net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
osPackage os provides a platform-independent interface to operating system functionality.
os/execPackage exec runs external commands.
os/signalPackage signal implements access to incoming signals.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
regexpPackage regexp implements regular expression search.
runtimePackage runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
sortPackage sort provides primitives for sorting slices and user-defined collections.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
sync/atomicPackage atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms.
syscallPackage syscall contains an interface to the low-level operating system primitives.
timePackage time provides functionality for measuring and displaying time.