mirror of
https://github.com/traefik/traefik.git
synced 2025-08-11 09:07:07 +02:00
12 lines
209 B
Go
12 lines
209 B
Go
package k8s
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/config/dynamic"
|
|
)
|
|
|
|
type RouterTransform interface {
|
|
Apply(ctx context.Context, rt *dynamic.Router, annotations map[string]string) error
|
|
}
|