mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00

These commands allow working with build records of completed and running builds. Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
8 lines
192 B
Go
8 lines
192 B
Go
package browser
|
|
|
|
import "golang.org/x/sys/windows"
|
|
|
|
func openBrowser(url string) error {
|
|
return windows.ShellExecute(0, nil, windows.StringToUTF16Ptr(url), nil, nil, windows.SW_SHOWNORMAL)
|
|
}
|