diff options
author | xengineering <me@xengineering.eu> | 2024-03-03 15:13:55 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-03 15:26:07 +0100 |
commit | b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35 (patch) | |
tree | 403dedeb172f6a7efb0fb3cbc8663227bec1a7e2 /view/recipes.go | |
parent | 25fe18973f11d3db61a1ae9ca05f2bd63d3edea9 (diff) | |
download | ceres-b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35.tar ceres-b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35.tar.zst ceres-b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35.zip |
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.
Diffstat (limited to 'view/recipes.go')
-rw-r--r-- | view/recipes.go | 2 |
1 files changed, 1 insertions, 1 deletions
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() |