mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-03-22 17:19:36 +01:00
11 lines
140 B
Go
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 }
|