2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00
cointop/cmd/commands/server_windows.go
2020-11-18 20:37:40 -08:00

20 lines
307 B
Go

//+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")
},
}
}