You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cointop/cmd/win_server.go

19 lines
278 B
Go

//+build windows
package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
func ServerCmd() *cobra.Command {
return &cobra.Command{
RunE: func(cmd *cobra.Command, args []string) error {
fmt.Println("//TODO: implement pty ssh server for Windows")
return nil
},
}
}