Files
ctask/main.go
T
typebasedio ab56ddfff0 feat: project init with config package and root command
Go module, cobra root command, config resolution (CTASK_ROOT, CTASK_AGENT, EnvVars) with tests.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 18:28:24 -04:00

14 lines
142 B
Go

package main
import (
"os"
"github.com/warrenronsiek/ctask/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}