5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-07 14:09:34 +08:00
wails/v2/internal/frontend/desktop/darwin/browser.go
2021-09-28 19:44:12 +10:00

14 lines
242 B
Go

//go:build darwin
package darwin
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)
}