-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.go
More file actions
34 lines (27 loc) · 659 Bytes
/
main.go
File metadata and controls
34 lines (27 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ccc - Claude Code Supervisor
// Auto-review and iterate until quality work is delivered.
// Switch between multiple Claude Code providers with one command.
package main
import (
"fmt"
"os"
"github.com/guyskk/ccc/internal/cli"
)
// Version is set by build flags during release.
var Version = "dev"
// BuildTime is set by build flags during release (ISO 8601 format).
var BuildTime = "unknown"
func init() {
// Set version info for cli package
cli.Version = Version
cli.BuildTime = BuildTime
}
func main() {
if err := run(); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(1)
}
}
func run() error {
return cli.Execute()
}