doctor: correct compilation errors

This commit is contained in:
Travis McLane
2024-04-08 13:23:12 -05:00
parent 724ca386e7
commit 3c9fd67fd0
+5 -1
View File
@@ -2,13 +2,17 @@
package doctor
import (
"github.com/wailsapp/wails/v3/internal/doctor/packagemanager"
"github.com/wailsapp/wails/v3/internal/operatingsystem"
)
func getInfo() (map[string]string, bool) {
result := make(map[string]string)
return result, true
}
func checkPlatformDependencies(result map[string]string, ok *bool) {
result := make(map[string]string)
info, _ := operatingsystem.Info()
pm := packagemanager.Find(info.ID)