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