├── .github └── workflows │ └── release_build.yaml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── go.mod └── gxor.go /.github/workflows/release_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/gxor/HEAD/.github/workflows/release_build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/gxor/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/gxor/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/gxor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/gxor/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module gxor 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /gxor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/gxor/HEAD/gxor.go --------------------------------------------------------------------------------