mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-05-14 13:51:33 +00:00
15 lines
232 B
Go
15 lines
232 B
Go
//go:build !darwin && !freebsd && !linux
|
|
|
|
package command
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func runFuse(cmd *Command, args []string) bool {
|
|
fmt.Printf("Fuse is not supported on %s %s\n", runtime.GOOS, runtime.GOARCH)
|
|
|
|
return true
|
|
}
|