1
1
Fork 0
mirror of https://github.com/moul/sshportal.git synced 2025-01-21 15:04:45 +08:00

Merge pull request from moul/dev/moul/windows

This commit is contained in:
Manfred Touron 2020-07-01 14:17:50 +02:00 committed by GitHub
commit 986bcd7971
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
testserver_unsupported.go Normal file
View file

@ -0,0 +1,14 @@
// +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")
}