├── .dockerignore ├── .github └── workflows │ └── goreleaser.yml ├── .gitignore ├── .goreleaser.yml ├── CREDITS ├── Dockerfile ├── LICENSE ├── README.md ├── cmd └── bctx │ └── main.go ├── go.mod └── go.sum /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .idea 3 | LICENSE 4 | README.md 5 | Dockerfile 6 | -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/CREDITS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/README.md -------------------------------------------------------------------------------- /cmd/bctx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/cmd/bctx/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orisano/bctx/HEAD/go.sum --------------------------------------------------------------------------------