├── .github └── workflows │ └── go.yml ├── LICENSE ├── README.md ├── go.mod ├── tags.go └── tags_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/structtag/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/structtag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/structtag/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/fatih/structtag 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/structtag/HEAD/tags.go -------------------------------------------------------------------------------- /tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/structtag/HEAD/tags_test.go --------------------------------------------------------------------------------