mirror of
https://github.com/moul/sshportal.git
synced 2025-01-21 15:04:45 +08:00
Merge pull request #185 from moul/dev/moul/windows
This commit is contained in:
commit
986bcd7971
1 changed files with 14 additions and 0 deletions
14
testserver_unsupported.go
Normal file
14
testserver_unsupported.go
Normal 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")
|
||||
}
|
Loading…
Reference in a new issue