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