├── .github ├── FUNDING.yaml └── workflows │ └── test.yaml ├── LICENSE ├── README.md ├── cameron.go ├── cameron_test.go └── go.mod /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: aofei 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aofei/cameron/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aofei/cameron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aofei/cameron/HEAD/README.md -------------------------------------------------------------------------------- /cameron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aofei/cameron/HEAD/cameron.go -------------------------------------------------------------------------------- /cameron_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aofei/cameron/HEAD/cameron_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/aofei/cameron 2 | 3 | go 1.13 4 | --------------------------------------------------------------------------------