Files
kubesphere/vendor/github.com/gobuffalo/flect/rule.go
2019-08-07 21:05:12 +08: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 }