├── .gitignore ├── LICENSE ├── README.md ├── go.mod └── goc.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goc-project/goc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goc-project/goc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goc-project/goc/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module goc-project/goc 2 | 3 | go 1.23.3 4 | -------------------------------------------------------------------------------- /goc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goc-project/goc/HEAD/goc.go --------------------------------------------------------------------------------