sshportal/testserver_unsupported.go
2020-07-01 14:10:50 +02:00

15 lines
229 B
Go

// +build windows
package main
import (
"fmt"
"github.com/urfave/cli"
)
// testServer is an hidden handler used for integration tests
func testServer(c *cli.Context) error {
return fmt.Errorf("not available on windows")
}