mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
8 lines
107 B
Go
8 lines
107 B
Go
|
|
package open
|
||
|
|
|
||
|
|
import "os/exec"
|
||
|
|
|
||
|
|
func browser(url string) error {
|
||
|
|
return exec.Command("open", url).Run()
|
||
|
|
}
|