├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum └── gothere.go /.gitignore: -------------------------------------------------------------------------------- 1 | gothere 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmanley/gothere/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmanley/gothere/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmanley/gothere/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmanley/gothere/HEAD/go.sum -------------------------------------------------------------------------------- /gothere.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmanley/gothere/HEAD/gothere.go --------------------------------------------------------------------------------