mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
doctor: correct compilation errors
This commit is contained in:
parent
724ca386e7
commit
3c9fd67fd0
1 changed files with 5 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue