├── .github └── workflows │ └── semgrep.yml ├── README.MD ├── bin └── .gitkeep ├── cmd └── biu-cli.go ├── go.mod ├── go.sum └── releases.sh /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbug/biu-cli/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbug/biu-cli/HEAD/README.MD -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/biu-cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbug/biu-cli/HEAD/cmd/biu-cli.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbug/biu-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbug/biu-cli/HEAD/go.sum -------------------------------------------------------------------------------- /releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbug/biu-cli/HEAD/releases.sh --------------------------------------------------------------------------------