github.com/secoba/wails/v2@v2.6.4/internal/wv2installer/error.go (about) 1 //go:build windows && wv2runtime.error 2 // +build windows,wv2runtime.error 3 4 package wv2installer 5 6 import ( 7 "fmt" 8 "github.com/secoba/wails/v2/internal/webview2runtime" 9 "github.com/secoba/wails/v2/pkg/options/windows" 10 ) 11 12 func doInstallationStrategy(installStatus installationStatus, messages *windows.Messages) error { 13 _ = webview2runtime.Error(messages.ContactAdmin, messages.Error) 14 return fmt.Errorf(messages.Webview2NotInstalled) 15 }