github.com/AlpineAIO/wails/v2@v2.0.0-beta.32.0.20240505041856-1047a8fa5fef/pkg/runtime/browser.go (about)

     1  package runtime
     2  
     3  import (
     4  	"context"
     5  )
     6  
     7  // BrowserOpenURL uses the system default browser to open the url
     8  func BrowserOpenURL(ctx context.Context, url string) {
     9  	appFrontend := getFrontend(ctx)
    10  	appFrontend.BrowserOpenURL(url)
    11  }