diff --git a/pkg/confidence/models.go b/pkg/confidence/models.go index 9b0c56c..cd013d4 100644 --- a/pkg/confidence/models.go +++ b/pkg/confidence/models.go @@ -57,20 +57,20 @@ func NewGeneralResolutionError(msg string) ResolutionError { } type APIConfig struct { - APIKey string + APIKey string APIResolveUrl string } func NewAPIConfig(apiKey string) *APIConfig { return &APIConfig{ - APIKey: apiKey, + APIKey: apiKey, APIResolveUrl: "https://resolver.confidence.dev", } } func NewAPIConfigWithUrl(apiKey, apiResolveUrl string) *APIConfig { return &APIConfig{ - APIKey: apiKey, + APIKey: apiKey, APIResolveUrl: apiResolveUrl, } }