File: browser_unsupported.go

package info (click to toggle)
golang-github-pkg-browser 0.0~git20240102.5ac0b6a-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 116 kB
  • sloc: makefile: 5
file content (12 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
// +build !linux,!windows,!darwin,!openbsd,!freebsd,!netbsd

package browser

import (
	"fmt"
	"runtime"
)

func openBrowser(url string) error {
	return fmt.Errorf("openBrowser: unsupported operating system: %v", runtime.GOOS)
}