Merge branch 'vuongggggg-fix/make-windows-builds-again' into master

pull/73/head
Miguel Mota 4 years ago
commit f32f46e7e2

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

@ -0,0 +1,19 @@
//+build windows
package cmd
import (
"errors"
"github.com/spf13/cobra"
)
// ServerCmd ...
// TODO: implement pty ssh server for Windows
func ServerCmd() *cobra.Command {
return &cobra.Command{
RunE: func(cmd *cobra.Command, args []string) error {
return errors.New("Not implemented")
},
}
}
Loading…
Cancel
Save