1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-26 07:12:30 +00:00
Files
norman/pkg/kwrapper/etcd/etcd_none.go
2018-11-07 11:44:16 -07:00

12 lines
145 B
Go

// +build no_etcd
package etcd
import (
"context"
)
func RunETCD(ctx context.Context, dataDir string) ([]string, error) {
return nil, nil
}