k3s/pkg/cluster/etcd.go

13 lines
186 B
Go

// +build !no_etcd
package cluster
import (
"github.com/rancher/k3s/pkg/cluster/managed"
"github.com/rancher/k3s/pkg/etcd"
)
func init() {
managed.RegisterDriver(etcd.NewETCD())
}