mirror of
https://github.com/restic/restic.git
synced 2026-05-11 21:15:23 +00:00
13 lines
256 B
Go
13 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
|
|
}
|