feat: Add support for setup-info command (#108)

* feat: Add support for setup-info command

* fix: Code review fixes

* fix: Add event log info
This commit is contained in:
Abhisek Datta
2026-01-11 19:25:13 +05:30
committed by GitHub
parent 11481c3f4c
commit c0122898ca
9 changed files with 228 additions and 6 deletions
+2
View File
@@ -10,6 +10,7 @@ type TerminalColors struct {
Yellow ColorFn
Cyan ColorFn
Green ColorFn
Bold ColorFn
}
var Colors = TerminalColors{
@@ -18,4 +19,5 @@ var Colors = TerminalColors{
Yellow: color.New(color.FgYellow).SprintfFunc(),
Cyan: color.New(color.FgCyan).SprintfFunc(),
Green: color.New(color.FgGreen).SprintfFunc(),
Bold: color.New(color.Bold).SprintfFunc(),
}