Files
Claudia CLI Bot b6df678845
Some checks failed
Release / build (, amd64, darwin) (push) Failing after 50s
Release / build (, amd64, linux) (push) Failing after 30s
Release / build (, arm64, darwin) (push) Failing after 40s
Release / build (, arm64, linux) (push) Failing after 31s
Release / build (.exe, amd64, windows) (push) Failing after 31s
Release / release (push) Has been skipped
feat: Add main entry point and all CLI commands
- cmd/claudia-docs/main.go - entry point
- cobra/commands.go - CLI commands
- internal/api/ - HTTP client and API calls
- internal/auth/ - authentication
- internal/config/ - configuration
- internal/output/ - output formatting
- pkg/types/ - shared types
2026-03-31 06:12:09 +00:00

14 lines
143 B
Go

package main
import (
"os"
"github.com/claudia/docs-cli/cobra"
)
func main() {
if err := cobra.Execute(); err != nil {
os.Exit(1)
}
}