1 package name 2 3 import "github.com/gobuffalo/flect" 4 5 // Ident represents the string and it's parts 6 type Ident struct { 7 flect.Ident 8 } 9 10 // New creates a new Ident from the string 11 func New(s string) Ident { 12 return Ident{flect.New(s)} 13 } 14