mirror of
https://github.com/rancher/norman.git
synced 2025-09-16 07:09:44 +00:00
12 lines
144 B
Go
12 lines
144 B
Go
// +build !linux
|
|
|
|
package etcd
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func RunETCD(ctx context.Context, dataDir string) ([]string, error) {
|
|
return nil, nil
|
|
}
|