mirror of
https://github.com/miguelmota/cointop
synced 2024-11-10 13:10:26 +00:00
20 lines
307 B
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")
|
|
},
|
|
}
|
|
}
|