You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cmd/commands/server_windows.go

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