Skip to content
This repository was archived by the owner on May 2, 2022. It is now read-only.

Commit 986bbe1

Browse files
authored
import os/exec package in browser_windows.go
1 parent ae0d592 commit 986bbe1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

browser_windows.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package browser
22

3-
import "golang.org/x/sys/windows"
3+
import (
4+
"os/exec"
5+
"golang.org/x/sys/windows"
6+
)
47

58
func openBrowser(url string) error {
69
return windows.ShellExecute(0, nil, windows.StringToUTF16Ptr(url), nil, nil, windows.SW_SHOWNORMAL)

0 commit comments

Comments
 (0)