Skip to content

Instantly share code, notes, and snippets.

View lemon-tree-sheng's full-sized avatar
🏝️
create & design

daemon lemon-tree-sheng

🏝️
create & design
  • shopee
  • Shenzhen
View GitHub Profile
@drewolson
drewolson / reflection.go
Last active November 20, 2023 09:39
Golang Reflection Example
package main
import (
"fmt"
"reflect"
)
type Foo struct {
FirstName string `tag_name:"tag 1"`
LastName string `tag_name:"tag 2"`