1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-16 15:21:33 +00:00
Files
norman/pkg/kwrapper/etcd/etcd.go

12 lines
144 B
Go
Raw Normal View History

2019-08-19 09:20:04 -07:00
// +build !linux
package etcd
import (
"context"
)
2018-10-24 16:21:28 -07:00
func RunETCD(ctx context.Context, dataDir string) ([]string, error) {
2019-08-19 09:20:04 -07:00
return nil, nil
}