mirror of
https://github.com/makew0rld/amfora.git
synced 2024-12-04 14:46:29 -05: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")
|
|
}
|