mirror of
https://github.com/restic/restic.git
synced 2026-02-03 12:29:37 -05:00
12 lines
256 B
Go
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
|
|
}
|