rum-goggles/vendor/github.com/wailsapp/wails/v2/pkg/runtime/browser.go

12 lines
229 B
Go
Raw Permalink Normal View History

2024-02-23 16:39:16 +00:00
package runtime
import (
"context"
)
// BrowserOpenURL uses the system default browser to open the url
func BrowserOpenURL(ctx context.Context, url string) {
appFrontend := getFrontend(ctx)
appFrontend.BrowserOpenURL(url)
}