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/recipes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/recipes.go') diff --git a/view/recipes.go b/view/recipes.go index 3a5fbf8..bd4c72b 100644 --- a/view/recipes.go +++ b/view/recipes.go @@ -6,7 +6,7 @@ import ( "xengineering.eu/ceres/model" ) -func Recipes(w http.ResponseWriter, r *http.Request) { +func RecipesRead(w http.ResponseWriter, r *http.Request) { recipes := make(model.Recipes, 0) err := recipes.Read() -- cgit v1.2.3-70-g09d2