Changed interface func from GetClient() to GetInternalClient()

This commit is contained in:
David Allen 2024-08-27 14:40:23 -06:00
parent abd83454ad
commit 5d811f31ab
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC

View file

@ -28,7 +28,7 @@ func (c SmdClient) RootEndpoint(endpoint string) string {
return fmt.Sprintf("%s/hsm/v2%s", c.URI, endpoint)
}
func (c SmdClient) GetClient() *http.Client {
func (c SmdClient) GetInternalClient() *http.Client {
return c.Client
}