Skip to content

Instantly share code, notes, and snippets.

View Mattias-'s full-sized avatar

Mattias Appelgren Mattias-

View GitHub Profile
@Mattias-
Mattias- / 1_simple.go
Created February 24, 2022 20:48 — forked from sosedoff/1_simple.go
Golang Custom Struct Tags Example
package main
import (
"fmt"
"reflect"
)
// Name of the struct tag used in examples
const tagName = "validate"