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 /model/recipes.go | |
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 'model/recipes.go')
-rw-r--r-- | model/recipes.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/model/recipes.go b/model/recipes.go index 7604fe2..fd8115f 100644 --- a/model/recipes.go +++ b/model/recipes.go @@ -5,8 +5,8 @@ import ( ) type RecipesElement struct { - Id int64 // TODO change to string - Title string + Id int64 // TODO change to string + Title string } type Recipes []RecipesElement @@ -39,11 +39,11 @@ func (r *Recipes) Read() error { func RecipesTestData() Recipes { return []RecipesElement{ { - Id: 1, + Id: 1, Title: "Pancakes", }, { - Id: 2, + Id: 2, Title: "Burger", }, } |