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