Files
seaweedFS/weed/command/mount_notsupported.go
Chris Lu e4b70c2521 go fix
2026-02-20 18:42:00 -08:00

15 lines
234 B
Go

//go:build !linux && !darwin && !freebsd
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
}