// Command sundynix-desktop —— 第 1 层客户端,Wails 本地 Go 运行时入口。 package main import ( "embed" "github.com/wailsapp/wails/v2/pkg/options" ) //go:embed all:frontend/dist var assets embed.FS func main() { app := NewApp() _ = wails.Run(&options.App{ Title: "sundynix-agentix", Width: 1280, Height: 800, // Bind: TS/Go 强绑定 —— 把 App 的方法暴露给前端 Bind: []any{app}, }) }