mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +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()
|
||
|
}
|