Files
gardener-extension-shoot-fl…/vendor/github.com/gobuffalo/flect/rule.go
2021-01-28 17:37:47 +01:00

11 lines
140 B
Go

package flect
type ruleFn func(string) string
type rule struct {
suffix string
fn ruleFn
}
func noop(s string) string { return s }