mirror of
https://github.com/fleetdm/fleet
synced 2026-04-24 23:17:43 +00:00
9 lines
161 B
Go
9 lines
161 B
Go
|
|
package open
|
||
|
|
|
||
|
|
import "os/exec"
|
||
|
|
|
||
|
|
func browser(url string) error {
|
||
|
|
// xdg-open is available on most Linux-y systems
|
||
|
|
return exec.Command("xdg-open", url).Run()
|
||
|
|
}
|