summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-09-11 20:25:31 +0200
committerxengineering <me@xengineering.eu>2024-09-11 20:25:54 +0200
commit54029aac92f17ec87d3ef0bb73fcdac271b209c9 (patch)
treee73a23c9c556485102efa1212bf24a908359a3ba /view
parent08150821fdb8fd1af23d84e661e61983a16a36b5 (diff)
downloadceres-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.go2
-rw-r--r--view/recipe.go2
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
}