mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
c82c580716
* Orbit: Add Fleet Desktop support to Windows * Rename workflow, fix linux build * Do not compile systray on linux * nolint on unused * Fix lint properly * nolint both checkers * Fix monitor logic in desktopRunner * Fix interrupt and execute order
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()
|
|
}
|