├── .github └── workflows │ ├── github-release.yml │ └── test.yml ├── LICENSE.md ├── README.md ├── configuration.go ├── fakeca_test.go ├── go.mod └── identity.go /.github/workflows/github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/.github/workflows/github-release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/README.md -------------------------------------------------------------------------------- /configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/configuration.go -------------------------------------------------------------------------------- /fakeca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/fakeca_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/go.mod -------------------------------------------------------------------------------- /identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/fakeca/HEAD/identity.go --------------------------------------------------------------------------------