Skip to content

Instantly share code, notes, and snippets.

View mmcloughlin's full-sized avatar

Michael McLoughlin mmcloughlin

View GitHub Profile
@mmcloughlin
mmcloughlin / structtags.go
Created October 28, 2016 02:43
Golang Struct Tags
package main
import (
"fmt"
"reflect"
)
// PrintTags prints all tag values for the given struct.
func PrintTags(s interface{}, tag string) {
st := reflect.TypeOf(s)