missing import (#362)

This commit is contained in:
Michael Quigley 2023-06-29 13:19:15 -04:00
parent 7b725903dd
commit 7a4ad23aa1
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -1,5 +1,7 @@
package main
import "os/exec"
func openBrowser(url string) error {
return exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Run()
}