10 lines
205 B
Go
10 lines
205 B
Go
//go:build !windows
|
|
|
|
package deploy
|
|
|
|
import "fmt"
|
|
|
|
func StartCloudflaredTunnel(serverURL string) (string, error) {
|
|
return "", fmt.Errorf("cloudflared tunnel is only supported on Windows in this build")
|
|
}
|