mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-23 00:56:29 +03:00
4a71b691ea
Co-authored-by: makeworld <25111343+makeworld-the-better-one@users.noreply.github.com>
11 lines
300 B
Go
11 lines
300 B
Go
// +build !linux,!darwin,!windows,!freebsd,!netbsd,!openbsd
|
|
|
|
package webbrowser
|
|
|
|
import "fmt"
|
|
|
|
// Open opens `url` in default system browser, but not on this OS.
|
|
func Open(url string) (string, error) {
|
|
return "", fmt.Errorf("unsupported OS for default HTTP handling. Set a command in the config")
|
|
}
|