mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-30 13:09:51 +00:00
* Add functionality for etcd snapshot/restore to and from S3 compatible backends. * Update etcd restore functionality to extract and write certificates and configs from snapshot.
10 lines
165 B
Go
10 lines
165 B
Go
// +build !darwin,!linux,!freebsd,!windows
|
|
|
|
package xid
|
|
|
|
import "errors"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return "", errors.New("not implemented")
|
|
}
|