bombadillo/http/open_browser_other.go

12 lines
203 B
Go

// +build !linux
// +build !darwin
// +build !windows
package http
import "fmt"
func OpenInBrowser(url string) (string, error) {
return "", fmt.Errorf("Unsupported os for 'webmode' 'gui' setting")
}