mirror of
https://github.com/makew0rld/amfora.git
synced 2024-12-01 00:53:28 +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")
|
|
}
|