refactor for better maintainability and readabilty

This commit is contained in:
Robin Olsen
2026-02-17 11:11:54 +01:00
parent a38e32aa78
commit 279adb157e
7 changed files with 68 additions and 73 deletions

View File

@@ -2,7 +2,6 @@ package main
import (
"context"
"log"
"github.com/charmbracelet/fang"
)
@@ -12,6 +11,6 @@ func main() {
if err := fang.Execute(ctx, rootCmd,
fang.WithColorSchemeFunc(fang.AnsiColorScheme)); err != nil {
log.Fatalf("Failed to execute command: %v\n", err)
return
}
}