diff --git a/cointop/cmd/win_server.go b/cointop/cmd/server_windows.go similarity index 63% rename from cointop/cmd/win_server.go rename to cointop/cmd/server_windows.go index 247efb8..098f1e8 100644 --- a/cointop/cmd/win_server.go +++ b/cointop/cmd/server_windows.go @@ -3,16 +3,17 @@ package cmd import ( - "fmt" + "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 { - fmt.Println("//TODO: implement pty ssh server for Windows") - return nil + return errors.New("Not implemented") }, } }