From b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 3 Mar 2024 15:13:55 +0100 Subject: view: Add 'Read' suffix to function names This reflects that these HTTP handler functions implement one of the four CRUD methods create, read update and delete. --- view/recipe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/recipe.go') diff --git a/view/recipe.go b/view/recipe.go index 25abc6b..c488481 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -8,7 +8,7 @@ import ( "github.com/gorilla/mux" ) -func Recipe(w http.ResponseWriter, r *http.Request) { +func RecipeRead(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} recipe.Id = mux.Vars(r)[`id`] -- cgit v1.2.3-70-g09d2