1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-23 19:45:24 +00:00
amfora/webbrowser/open_browser_other.go
2020-07-02 14:29:33 -04:00

10 lines
233 B
Go

// +build !linux,!darwin,!windows,!freebsd,!netbsd,!openbsd
package webbrowser
import "fmt"
func Open(url string) (string, error) {
return "", fmt.Errorf("unsupported OS for default HTTP handling. Set a command in the config")
}