incus-mirror/cmd/incus/remote_windows.go
Stéphane Graber 511834c558
incus: Un-export Command and Run functions
Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
2026-03-28 08:35:05 -04:00

17 lines
208 B
Go

//go:build windows
package main
import (
"github.com/spf13/cobra"
)
type cmdRemoteProxy struct {
global *cmdGlobal
remote *cmdRemote
}
func (c *cmdRemoteProxy) command() *cobra.Command {
return nil
}