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/step.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/step.go')
-rw-r--r-- | model/step.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/model/step.go b/model/step.go index 89a9efd..b996e3a 100644 --- a/model/step.go +++ b/model/step.go @@ -1,17 +1,17 @@ package model import ( - "errors" - "encoding/json" "database/sql" + "encoding/json" + "errors" "fmt" ) type Step struct { - Id string `json:"id"` - Index string `json:"index"` - Text string `json:"text"` - Recipe string `json:"recipe"` + Id string `json:"id"` + Index string `json:"index"` + Text string `json:"text"` + Recipe string `json:"recipe"` Ingredients []Ingredient `json:"ingredients"` } |