From dc98cdb16f2444de9927a60fdf3539d3446ffd8b Mon Sep 17 00:00:00 2001 From: Maciej Perlinski Date: Tue, 16 Jan 2024 23:46:32 +0100 Subject: [PATCH] fixing code formatting --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 419effc..ff48f5a 100644 --- a/README.md +++ b/README.md @@ -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) } ```