- cmd/gt/main.go: Entry point using Cobra - internal/cmd/root.go: Root command with description - internal/cmd/version.go: Version command with build info - internal/style/style.go: Lipgloss styles for terminal output Closes gt-u1j.1 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
161 B
Go
9 lines
161 B
Go
// gt is the Gas Town CLI for managing multi-agent workspaces.
|
|
package main
|
|
|
|
import "github.com/steveyegge/gastown/internal/cmd"
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|