Skip to content

Commit 5bb944b

Browse files
committed
chore: fix readme
(cherry picked from commit 08e05a8)
1 parent fdb47aa commit 5bb944b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ HTTPS_PROXY=http://proxy.example.com:8080
131131
Configure server URL and variables:
132132

133133
```go
134-
configuration := kbcloud.NewConfiguration()
134+
configuration := common.NewConfiguration()
135135

136136
// Set server URL
137137
configuration.Host = "api.example.com"
@@ -154,7 +154,7 @@ ctx := context.WithValue(
154154
Enable debug logging:
155155

156156
```go
157-
configuration := kbcloud.NewConfiguration()
157+
configuration := common.NewConfiguration()
158158
configuration.Debug = true
159159
```
160160

@@ -163,7 +163,7 @@ configuration.Debug = true
163163
Configure retry behavior:
164164

165165
```go
166-
configuration := kbcloud.NewConfiguration()
166+
configuration := common.NewConfiguration()
167167

168168
// Configure retry settings
169169
configuration.RetryConfiguration = common.RetryConfiguration{
@@ -181,7 +181,7 @@ configuration.RetryConfiguration = common.RetryConfiguration{
181181
Configure HTTP client:
182182

183183
```go
184-
configuration := kbcloud.NewConfiguration()
184+
configuration := common.NewConfiguration()
185185

186186
// Custom HTTP client
187187
configuration.HTTPClient = &http.Client{
@@ -206,7 +206,7 @@ ctx := context.WithValue(
206206
Configure custom user agent:
207207

208208
```go
209-
configuration := kbcloud.NewConfiguration()
209+
configuration := common.NewConfiguration()
210210
configuration.UserAgent = "MyApp/1.0.0"
211211
```
212212

@@ -215,7 +215,7 @@ configuration.UserAgent = "MyApp/1.0.0"
215215
Add default headers to all requests:
216216

217217
```go
218-
configuration := kbcloud.NewConfiguration()
218+
configuration := common.NewConfiguration()
219219
configuration.AddDefaultHeader("Custom-Header", "value")
220220
```
221221

0 commit comments

Comments
 (0)