├── LICENSE.md ├── README.md ├── go.mod ├── goop.go └── goop_test.go /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/goop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/goop/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lanl/goop 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /goop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/goop/HEAD/goop.go -------------------------------------------------------------------------------- /goop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/goop/HEAD/goop_test.go --------------------------------------------------------------------------------