rum-goggles/vendor/github.com/wailsapp/wails/v2/pkg/runtime/browser.go
2024-02-23 11:39:16 -05:00

12 lines
229 B
Go

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