fix: Fail safe, if optional endpoints are not given

This commit is contained in:
Jan-Otto Kröpke 2024-04-05 19:10:32 +02:00
parent a3b73a6950
commit 1c66947ec7
No known key found for this signature in database
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")