mirror of
https://github.com/moul/sshportal.git
synced 2024-11-15 12:46:17 +08:00
15 lines
229 B
Go
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")
|
||
|
}
|