chore: small fix for build on windows

This commit is contained in:
Manfred Touron 2020-07-01 14:10:50 +02:00
parent 33b8e5272c
commit dae0252857
No known key found for this signature in database
GPG key ID: 615D26EDFC55B351

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