wails/v3/internal/commands/setup.go
Lea Anthony b8630ca7b5 feat(v3): add interactive setup wizard command
- Add setup.go command that launches the web-based setup wizard
- Register `wails3 setup` command in main.go
- Fix SignWrapper registration to use NewSubCommand pattern

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-06 17:04:43 +11:00

13 lines
221 B
Go

package commands
import (
"github.com/wailsapp/wails/v3/internal/setupwizard"
)
type SetupOptions struct{}
func Setup(_ *SetupOptions) error {
DisableFooter = true
wizard := setupwizard.New()
return wizard.Run()
}