├── LICENSE ├── README.md ├── frand.go ├── frand_test.go └── go.mod /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/frand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/frand/HEAD/README.md -------------------------------------------------------------------------------- /frand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/frand/HEAD/frand.go -------------------------------------------------------------------------------- /frand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukechampine/frand/HEAD/frand_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module lukechampine.com/frand 2 | 3 | go 1.23.1 4 | --------------------------------------------------------------------------------