mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-16 15:45:50 +01:00
- 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>
13 lines
221 B
Go
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()
|
|
}
|