mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 00:41:59 +08:00
15 lines
400 B
Go
15 lines
400 B
Go
//go:build wv2runtime.error
|
|
// +build wv2runtime.error
|
|
|
|
package wv2runtime
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/leaanthony/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")
|
|
}
|