mirror of
https://github.com/restic/restic.git
synced 2026-02-03 12:29:37 -05:00
10 lines
222 B
Go
10 lines
222 B
Go
//go:build !darwin && !freebsd && !linux
|
|
// +build !darwin,!freebsd,!linux
|
|
|
|
package main
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func registerMountCommand(_ *cobra.Command) {
|
|
// Mount command not supported on these platforms
|
|
}
|