mirror of
https://github.com/lxc/incus
synced 2026-08-02 05:26:46 +00:00
17 lines
208 B
Go
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
|
|
}
|