Fixed #70 - windows can build again

pull/71/head
Vuong 4 years ago
parent fa9274c44a
commit 890fbf26f3

@ -1,3 +1,5 @@
//+build !windows
package cmd
import (

@ -0,0 +1,18 @@
//+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
},
}
}
Loading…
Cancel
Save