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
11 lines
197 B
Modula-2
11 lines
197 B
Modula-2
module github.com/dhao2001/mygo
|
|
|
|
go 1.26.2
|
|
|
|
require github.com/spf13/cobra v1.10.2
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.10 // indirect
|
|
)
|