Most everything is implemented, included a state handler and a pretty simple (but workable) system for managing state in HTML. Nice and simple for now. There is still much work to be done, but the rest is simple backend creation and error handling. And then input validation...a nightmare.
9 lines
124 B
Go
9 lines
124 B
Go
package domain
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type RecipeService interface {
|
|
CreateRecipe(ctx *gin.Context) Recipe
|
|
}
|
|
|