mirror of
https://github.com/stashapp/stash.git
synced 2025-12-19 14:53:01 +01:00
13 lines
233 B
Go
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)}
|
|
}
|