Imports of gotext command

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/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.
go/astPackage ast declares the types used to represent syntax trees for Go packages.
go/buildPackage build gathers information about Go packages.
go/constantPackage constant implements Values representing untyped Go constants and their corresponding operations.
go/formatPackage format implements standard formatting of Go source.
go/parserPackage parser implements a parser for Go source files.
go/typesPackage types declares the data types and implements the algorithms for type-checking of Go packages.
golang.org/x/text/languagePackage language implements BCP 47 language tags and related functionality.
golang.org/x/tools/go/buildutilPackage buildutil provides utilities related to the go/build package in the standard library.
golang.org/x/tools/go/loaderPackage loader loads a complete Go program from source code, parsing and type-checking the initial packages plus their transitive closure of dependencies.
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.
osPackage os provides a platform-independent interface to operating system functionality.
pathPackage path implements utility routines for manipulating slash-separated paths.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
text/templatePackage template implements data-driven templates for generating textual output.
unicodePackage unicode provides data and functions to test some properties of Unicode code points.
unicode/utf8Package utf8 implements functions and constants to support text encoded in UTF-8.