5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 16:21:11 +08:00
wails/v2/internal/frontend/desktop/darwin/browser.go
2021-09-19 17:25:23 +10:00

12 lines
223 B
Go

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)
}