Imports of appdash command

PathSynopsis
crypto/subtlePackage subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly.
crypto/tlsPackage tls partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446.
encoding/base64Package base64 implements base64 encoding as specified by RFC 4648.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/jessevdk/go-flagsPackage flags provides an extensive command line option parser.
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.
math/randPackage rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
netPackage net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
net/httpPackage http provides HTTP client and server implementations.
net/http/pprofPackage pprof serves via its HTTP server runtime profiling data in the format expected by the pprof visualization tool.
net/urlPackage url parses URLs and implements query escaping.
osPackage os provides a platform-independent interface to operating system functionality.
sourcegraph.com/sourcegraph/appdashPackage appdash provides a Go app performance tracing suite.
sourcegraph.com/sourcegraph/appdash/httptracePackage httptrace implements support for tracing HTTP applications.
sourcegraph.com/sourcegraph/appdash/sqltracePackage sqltrace implements utility types for tracing SQL queries.
sourcegraph.com/sourcegraph/appdash/traceappPackage traceapp implements the Appdash web UI.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
timePackage time provides functionality for measuring and displaying time.