5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 18:42:23 +08:00
wails/v2/internal/frontend/desktop/windows/browser.go
2021-10-17 21:50:15 +11:00

15 lines
262 B
Go

//go:build windows
// +build windows
package windows
import (
"github.com/pkg/browser"
)
// BrowserOpenURL Use the default browser to open the url
func (f *Frontend) BrowserOpenURL(url string) {
// Specific method implementation
_ = browser.OpenURL(url)
}