├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── main.go ├── go.mod ├── go.sum ├── gread.go └── gread_test.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/README.md -------------------------------------------------------------------------------- /examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/examples/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/go.sum -------------------------------------------------------------------------------- /gread.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/gread.go -------------------------------------------------------------------------------- /gread_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenferrer/gread/HEAD/gread_test.go --------------------------------------------------------------------------------