mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-06-28 15:41:13 +08:00
16 lines
245 B
Go
16 lines
245 B
Go
![]() |
//go:build !linux && !darwin
|
||
|
// +build !linux,!darwin
|
||
|
|
||
|
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
|
||
|
}
|