├── .github ├── dependabot.yaml └── workflows │ └── go.yaml ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── hitch.go └── hitch_test.go /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/.github/workflows/go.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/go.sum -------------------------------------------------------------------------------- /hitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/hitch.go -------------------------------------------------------------------------------- /hitch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbio/hitch/HEAD/hitch_test.go --------------------------------------------------------------------------------