diff options
author | xengineering <me@xengineering.eu> | 2024-01-17 21:37:52 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-18 19:52:29 +0100 |
commit | 325a2740e39b7c7937bfae8b76b092dd900fec9a (patch) | |
tree | 64587e601cf279458dd55fb90de0bacd202a2f1d /model/recipe_step.go | |
parent | 34fa1017a697287540d92d8c36ecca988f936f16 (diff) | |
download | ceres-325a2740e39b7c7937bfae8b76b092dd900fec9a.tar ceres-325a2740e39b7c7937bfae8b76b092dd900fec9a.tar.zst ceres-325a2740e39b7c7937bfae8b76b092dd900fec9a.zip |
Show steps on recipe page
Diffstat (limited to 'model/recipe_step.go')
-rw-r--r-- | model/recipe_step.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/model/recipe_step.go b/model/recipe_step.go index 980d312..dc2a831 100644 --- a/model/recipe_step.go +++ b/model/recipe_step.go @@ -1,9 +1,5 @@ package model -import ( - "log" -) - type RecipeStep struct { Id string // FIXME has to be uint RecipeId string // FIXME has to be uint @@ -11,10 +7,6 @@ type RecipeStep struct { Text string } -func (d *RecipeStep) String() string { - return d.Text -} - func (d *RecipeStep) FromDB() error { query, err := GetSql(`recipe-step-select`) if err != nil { @@ -28,6 +20,5 @@ func (d *RecipeStep) FromDB() error { &d.Text, ) - log.Printf("d.Text: %s %s %s %s\n", d.Id, d.RecipeId, d.Index, d.Text) return err } |