summaryrefslogtreecommitdiff
path: root/internal/easyhttp/saferrors.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-07-03 11:45:14 +0300
committerPaul Buetow <paul@buetow.org>2024-07-03 11:45:14 +0300
commitbfa17633390b7d7074bd584019e808eca4dd59a2 (patch)
tree7f37104d27a7012604bd05e2994944091c62379b /internal/easyhttp/saferrors.go
parent4bde5943fa9bee99e8ad1e570d05e142cbacade7 (diff)
add no servers configured error
Diffstat (limited to 'internal/easyhttp/saferrors.go')
-rw-r--r--internal/easyhttp/saferrors.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/easyhttp/saferrors.go b/internal/easyhttp/saferrors.go
index 32dd77f..464c90d 100644
--- a/internal/easyhttp/saferrors.go
+++ b/internal/easyhttp/saferrors.go
@@ -6,12 +6,12 @@ import (
)
// Safe errors
-type SafErrors struct {
+type safErrors struct {
errs []error
mutex sync.Mutex
}
-func (errs *SafErrors) Append(err error) {
+func (errs *safErrors) Append(err error) {
if err == nil {
return
}
@@ -20,12 +20,12 @@ func (errs *SafErrors) Append(err error) {
errs.errs = append(errs.errs, err)
}
-func (errs *SafErrors) Join() error {
+func (errs *safErrors) Join() error {
errs.mutex.Lock()
defer errs.mutex.Unlock()
return errors.Join(errs.errs...)
}
-func (errs *SafErrors) Error() string {
+func (errs *safErrors) Error() string {
return errs.Join().Error()
}