From a7ebfe7110e69fe7d36ea060d0a44d49f3370efc Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Fri, 8 Mar 2024 10:32:02 +0100 Subject: [PATCH] Ignore formatter output in main --- backend/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.go b/backend/main.go index 523a6a0..1aaca45 100644 --- a/backend/main.go +++ b/backend/main.go @@ -37,7 +37,7 @@ func main() { } // Pretty print the current config with toml - toml.NewEncoder(os.Stdout).Encode(conf) + _ = toml.NewEncoder(os.Stdout).Encode(conf) fmt.Printf("Starting server on http://localhost:%d\n", conf.Port) fmt.Printf("For documentation, go to http://localhost:%d/swagger/index.html\n", conf.Port)