2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00

Update error message

This commit is contained in:
Miguel Mota 2020-09-25 15:45:25 -07:00
parent 890fbf26f3
commit 1a4710d8ef

View File

@ -3,16 +3,17 @@
package cmd package cmd
import ( import (
"fmt" "errors"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
// ServerCmd ...
// TODO: implement pty ssh server for Windows
func ServerCmd() *cobra.Command { func ServerCmd() *cobra.Command {
return &cobra.Command{ return &cobra.Command{
RunE: func(cmd *cobra.Command, args []string) error { RunE: func(cmd *cobra.Command, args []string) error {
fmt.Println("//TODO: implement pty ssh server for Windows") return errors.New("Not implemented")
return nil
}, },
} }
} }