mirror of
https://github.com/moul/sshportal.git
synced 2025-01-15 20:08:09 +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")
|
||
|
}
|