1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-05 19:10:06 +02:00
seaweedfs/weed/command/mount_notsupported.go
2022-02-27 03:03:19 -08:00

16 lines
247 B
Go

//go:build !linux && !darwin
// +build !linux,!darwin
package command
import (
"fmt"
"runtime"
)
func runMount(cmd *Command, args []string) bool {
fmt.Printf("Mount is not supported on %s %s\n", runtime.GOOS, runtime.GOARCH)
return true
}