├── .github └── ISSUE_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Where is the project currently hosted? 2 | 3 | > https://github.com/foo/bar 4 | > 5 | 6 | What languages other than Go does the project utilize? 7 | 8 | > `make` and `bash` for building 9 | > 10 | 11 | When was the project's last activity? 12 | 13 | > Feb 3, 1991 14 | > 15 | 16 | Does the project have a maintainer, or a maintainer looking for someone to take over the project? 17 | 18 | > The current maintainer... 19 | > 20 | 21 | What active projects replicate the popular functionality of this project, if any? 22 | 23 | > There's github.com/baz/bar but it's really incomplete. 24 | > There's also github.com/quz/bar but it's also unmaintained. 25 | > 26 | 27 | What are some example projects that make use of this package? 28 | 29 | > My project github.com/zzz/yyy uses it heavily. 30 | > github.com/www/uuu imports it and has 300 stars. 31 | > 32 | 33 | Are there any outstanding **_critical_** bugs that result in the library being totally unusable or insecure? 34 | 35 | > There's issue #xyz/not at this time 36 | > 37 | 38 | Please provide a link to the project importers from https://godoc.org. 39 | 40 | > Example: https://godoc.org/github.com/gofrs/uuid?importers 41 | > 42 | 43 | What else would you like to mention about the project? 44 | 45 | > Of the packages trying to provide this functionality, this is the cleanest. It's lacking in... 46 | > 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Help Requests 2 | 3 | This repository has been replaced by GitHub Discussions [here](https://github.com/orgs/gofrs/discussions/categories/help-requests). 4 | --------------------------------------------------------------------------------