fix: error msg change, t.helper

This commit is contained in:
rupinder-syngh
2025-04-11 13:37:55 +05:30
parent 037fc02909
commit 36848cbd40
2 changed files with 40 additions and 53 deletions

View File

@@ -29,7 +29,7 @@ type Manager struct {
func validateMgrCfg(cfg *ManagerConfig) error {
if cfg.Root == "" {
return fmt.Errorf("Root path cannot be empty")
return fmt.Errorf("root path cannot be empty")
}
return nil
}