mirror of
https://github.com/miguelmota/cointop
synced 2024-11-10 13:10:26 +00:00
Update error message
This commit is contained in:
parent
890fbf26f3
commit
1a4710d8ef
@ -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")
|
||||
},
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user