mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:22:01 +08:00
13 lines
251 B
Go
13 lines
251 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package linux
|
|
|
|
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)
|
|
}
|