* Upgrade minio-go to v7 * Update to v7.0.3 Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
10 строки
165 B
Go
10 строки
165 B
Go
// +build !darwin,!linux,!freebsd,!windows
|
|
|
|
package xid
|
|
|
|
import "errors"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return "", errors.New("not implemented")
|
|
}
|