1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-28 07:57:01 +00:00
Files
norman/pkg/kwrapper/etcd/etcd_none.go

12 lines
129 B
Go
Raw Normal View History

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