mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-28 20:19:35 +00:00
13 lines
209 B
Go
13 lines
209 B
Go
package tls
|
|
|
|
import (
|
|
"context"
|
|
|
|
v1 "github.com/rancher/rio/types/apis/k3s.cattle.io/v1"
|
|
)
|
|
|
|
func Register(ctx context.Context) error {
|
|
clients := v1.ClientsFrom(ctx)
|
|
clients.ListenerConfig.OnChange(ctx)
|
|
}
|