5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-16 17:09:28 +08:00
wails/v2/internal/ffenestri/windows/wv2runtime/error.go
2021-12-26 19:24:59 +11:00

15 lines
416 B
Go

//go:build wv2runtime.error
// +build wv2runtime.error
package wv2runtime
import (
"fmt"
"github.com/wailsapp/wails/v2/internal/webview2runtime"
)
func doInstallationStrategy(installStatus installationStatus) error {
_ = webview2runtime.Error("The WebView2 runtime is required to run this application. Please contact your system administrator.", "Error")
return fmt.Errorf("webview2 runtime not installed")
}