mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-13 23:49:35 +08:00
14 lines
372 B
Go
14 lines
372 B
Go
// +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")
|
|
}
|