mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 16:49:33 +00:00
11 lines
166 B
Go
11 lines
166 B
Go
package cluster
|
|
|
|
import (
|
|
"github.com/rancher/k3s/pkg/cluster/managed"
|
|
"github.com/rancher/k3s/pkg/etcd"
|
|
)
|
|
|
|
func init() {
|
|
managed.RegisterDriver(etcd.NewETCD())
|
|
}
|