1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-27 19:55:23 +00:00
amfora/webbrowser/open_browser_other.go

10 lines
233 B
Go
Raw Normal View History

2020-06-18 20:54:48 +00:00
// +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")
}