├── .env.example ├── LICENSE ├── go.mod ├── go.sum ├── integration.go └── module.go /.env.example: -------------------------------------------------------------------------------- 1 | GITHUB_TOKEN=https://github.com/settings/tokens 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octomation/go-module/HEAD/LICENSE -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octomation/go-module/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octomation/go-module/HEAD/go.sum -------------------------------------------------------------------------------- /integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octomation/go-module/HEAD/integration.go -------------------------------------------------------------------------------- /module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octomation/go-module/HEAD/module.go --------------------------------------------------------------------------------