fix: Fail safe, if optional endpoints are not given (#582)

This commit is contained in:
Jan-Otto Kröpke 2024-04-09 15:02:31 +02:00 committed by GitHub
parent 8a21d38136
commit 06f37f84c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 4 deletions

5
pkg/client/errors.go Normal file
View file

@ -0,0 +1,5 @@
package client
import "errors"
var ErrEndpointNotSet = errors.New("endpoint not set")