├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md └── workflows │ └── test.yml ├── .gitignore ├── .golangci.yaml ├── LICENSE ├── README.md ├── go.mod ├── hello.go └── hello_test.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @letsencrypt/boulder-developers 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/letsencrypt/gorepotemplate 2 | 3 | go 1.24 4 | -------------------------------------------------------------------------------- /hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/hello.go -------------------------------------------------------------------------------- /hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letsencrypt/gorepotemplate/HEAD/hello_test.go --------------------------------------------------------------------------------