d582e01892
Co-authored-by: lbenguigui <lbenguigui@gmail.com>
12 lines
236 B
Go
12 lines
236 B
Go
package k8s
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/traefik/traefik/v3/pkg/config/dynamic"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
type RouterTransform interface {
|
|
Apply(ctx context.Context, rt *dynamic.Router, object runtime.Object) error
|
|
}
|