From 325a2740e39b7c7937bfae8b76b092dd900fec9a Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 17 Jan 2024 21:37:52 +0100 Subject: Show steps on recipe page --- model/recipe_step.go | 9 --------- 1 file changed, 9 deletions(-) (limited to 'model/recipe_step.go') 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 } -- cgit v1.2.3-70-g09d2