Skip to content

Instantly share code, notes, and snippets.

@0CrazyGuy9
0CrazyGuy9 / reflection.go
Created November 28, 2020 10:34 — forked from drewolson/reflection.go
Golang Reflection Example
package main
import (
"fmt"
"reflect"
)
type Foo struct {
FirstName string `tag_name:"tag 1"`
LastName string `tag_name:"tag 2"`