Skip to content

Commit

Permalink
fixing code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
panperla committed Jan 16, 2024
1 parent f122b5a commit dc98cdb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,18 @@ func main() {
// Initialize Re:amaze client
reamazeClient, err := reamaze.NewClient(email, apiToken, brand)
if err != nil {
log.Println(err)
}
log.Println(err)
}

// Example: Get a list of articles
articles, err := reamazeClient.GetArticles()
if err != nil {
fmt.Println("Error:", err)
return
}
fmt.Println("Error:", err)
return
}

// Process the list of articles as needed
fmt.Println("Articles:", articles)
fmt.Println("Articles:", articles)
}
```

Expand Down

0 comments on commit dc98cdb

Please sign in to comment.