stash/vendor/github.com/gobuffalo/flect/name/ident.go
2019-02-09 04:32:50 -08:00

13 lines
233 B
Go

package name
import "github.com/gobuffalo/flect"
// Ident represents the string and it's parts
type Ident struct {
flect.Ident
}
// New creates a new Ident from the string
func New(s string) Ident {
return Ident{flect.New(s)}
}