restic/cmd/restic/cmd_mount_disabled.go
2025-11-30 11:53:23 +01:00

12 lines
256 B
Go

//go:build !darwin && !freebsd && !linux
package main
import (
"github.com/restic/restic/internal/global"
"github.com/spf13/cobra"
)
func registerMountCommand(_ *cobra.Command, _ *global.Options) {
// Mount command not supported on these platforms
}