// Command gitflow is a CLI tool that discovers Git repositories under a // user-specified parent directory, scans their status, and presents findings // with AI-driven suggestions for next actions. package main import ( "fmt" "os" "gitea.oblak.solutions/dimitar/gitFlow/internal/version" ) func main() { fmt.Printf("gitflow %s\n", version.Version) os.Exit(0) }