diff options
author | xengineering <me@xengineering.eu> | 2024-09-11 20:25:31 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-09-11 20:25:54 +0200 |
commit | 54029aac92f17ec87d3ef0bb73fcdac271b209c9 (patch) | |
tree | e73a23c9c556485102efa1212bf24a908359a3ba /view | |
parent | 08150821fdb8fd1af23d84e661e61983a16a36b5 (diff) | |
download | ceres-54029aac92f17ec87d3ef0bb73fcdac271b209c9.tar ceres-54029aac92f17ec87d3ef0bb73fcdac271b209c9.tar.zst ceres-54029aac92f17ec87d3ef0bb73fcdac271b209c9.zip |
Apply go fmt to all source files
This applies default Go code style recommendations.
Diffstat (limited to 'view')
-rw-r--r-- | view/index_test.go | 2 | ||||
-rw-r--r-- | view/recipe.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/index_test.go b/view/index_test.go index 583032c..3ab35d5 100644 --- a/view/index_test.go +++ b/view/index_test.go @@ -1,9 +1,9 @@ package view import ( - "testing" "net/http" "net/http/httptest" + "testing" ) func TestIndexRead(t *testing.T) { diff --git a/view/recipe.go b/view/recipe.go index 8236476..d77d771 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -41,7 +41,7 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) { } } if !is_valid { - http.Error(w, "Unsupported view: " + template, http.StatusBadRequest) + http.Error(w, "Unsupported view: "+template, http.StatusBadRequest) return } |