mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-26 10:15:13 +03:00
10 lines
233 B
Go
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")
|
|
}
|