Imports of package middleware

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.
compress/flatePackage flate implements the DEFLATE compressed data format, described in RFC 1951.
compress/gzipPackage gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952.
contextPackage context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
crypto/randPackage rand implements a cryptographically secure random number generator.
crypto/subtlePackage subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly.
encoding/base64Package base64 implements base64 encoding as specified by RFC 4648.
errorsPackage errors implements functions to manipulate errors.
expvarPackage expvar provides a standardized interface to public variables, such as operation counters in servers.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/go-chi/chi/v5Package chi is a small, idiomatic and composable router for building HTTP services.
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.
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.
osPackage os provides a platform-independent interface to operating system functionality.
pathPackage path implements utility routines for manipulating slash-separated paths.
runtimePackage runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
runtime/debugPackage debug contains facilities for programs to debug themselves while they are running.
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.
timePackage time provides functionality for measuring and displaying time.