├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── question.yml │ └── suggestion.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── images │ ├── card.svg │ ├── godoc.svg │ └── license.svg └── workflows │ ├── ci.yml │ ├── codeql.yml │ └── godoc.yml ├── .typos.toml ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── base62.go ├── branca.go ├── branca_test.go ├── example_test.go ├── fuzz.go ├── go.mod └── go.sum /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/images/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/images/card.svg -------------------------------------------------------------------------------- /.github/images/godoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/images/godoc.svg -------------------------------------------------------------------------------- /.github/images/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/images/license.svg -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/godoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/.github/workflows/godoc.yml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- 1 | [files] 2 | extend-exclude = ["go.sum","branca_test.go"] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/SECURITY.md -------------------------------------------------------------------------------- /base62.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/base62.go -------------------------------------------------------------------------------- /branca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/branca.go -------------------------------------------------------------------------------- /branca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/branca_test.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/example_test.go -------------------------------------------------------------------------------- /fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/fuzz.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essentialkaos/branca/HEAD/go.sum --------------------------------------------------------------------------------