Add initial project structure including: - Go module with Cobra CLI dependency - Root command and main entrypoint - Basic documentation (README, AGENTS.md, architecture, decisions, development, roadmap) - Configuration example and gitignore - Tool version management with mise - Comprehensive project rules and conventions
8 lines
84 B
Go
8 lines
84 B
Go
package main
|
|
|
|
import "github.com/dhao2001/mygo/cmd"
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|