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
|
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
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user