├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── cla.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── acceptedLicenses.json ├── moduleScore.yaml ├── releases.md ├── resources └── logo.png └── support └── list_generated_mod_files.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/README.md -------------------------------------------------------------------------------- /acceptedLicenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/acceptedLicenses.json -------------------------------------------------------------------------------- /moduleScore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/moduleScore.yaml -------------------------------------------------------------------------------- /releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/releases.md -------------------------------------------------------------------------------- /resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/resources/logo.png -------------------------------------------------------------------------------- /support/list_generated_mod_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/gocenter/HEAD/support/list_generated_mod_files.txt --------------------------------------------------------------------------------