traefik/pkg/provider/kubernetes/k8s/router_transform.go
2023-05-17 11:18:37 +02:00

12 lines
209 B
Go

package k8s
import (
"context"
"github.com/traefik/traefik/v3/pkg/config/dynamic"
)
type RouterTransform interface {
Apply(ctx context.Context, rt *dynamic.Router, annotations map[string]string) error
}