├── .env_example ├── .github └── workflows │ └── unfollow.yml ├── .gitignore ├── README.md ├── cmd └── main.go ├── go.mod └── go.sum /.env_example: -------------------------------------------------------------------------------- 1 | MY_GITHUB_TOKEN= -------------------------------------------------------------------------------- /.github/workflows/unfollow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samueltuoyo15/GhostBuster/HEAD/.github/workflows/unfollow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samueltuoyo15/GhostBuster/HEAD/README.md -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samueltuoyo15/GhostBuster/HEAD/cmd/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samueltuoyo15/GhostBuster/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samueltuoyo15/GhostBuster/HEAD/go.sum --------------------------------------------------------------------------------