From b438a483ba8d1ffbf72afda5a8db9c19822aa26d Mon Sep 17 00:00:00 2001 From: Bruce MacDonald Date: Thu, 20 Feb 2025 11:05:59 -0800 Subject: [PATCH] gofmt --- api/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/types.go b/api/types.go index 89566b908..ec3d66c39 100644 --- a/api/types.go +++ b/api/types.go @@ -643,7 +643,7 @@ func (d *Duration) UnmarshalJSON(b []byte) (err error) { // ErrorResponse implements a structured error interface that is returned from the Ollama server type ErrorResponse struct { // Err is the error from the server. It helps with debugging the code-path - Err string `json:"error"` + Err string `json:"error"` // Hint is a user-friendly message about what went wrong, with suggested troubleshooting Hint string `json:"hint"`