The main.go was removed when Wails3 apps were added to cmd/, breaking `go build .` for the core CLI. Restore it and update variants/full.go to include daemon, forge, mcpcmd, prod, and session commands. Drop gitea (superseded by forge) and unifi (unused). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
270 B
Go
13 lines
270 B
Go
package main
|
|
|
|
import (
|
|
"github.com/host-uk/core/pkg/cli"
|
|
|
|
// Build variants import commands via self-registration.
|
|
// See internal/variants/ for available variants: full, ci, php, minimal.
|
|
_ "github.com/host-uk/core/internal/variants"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main()
|
|
}
|