mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
4a49b9e40b
Signed-off-by: Brian Downs <brian.downs@gmail.com>
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())
|
|
}
|