Potion/internal/domain/recipe/repository.go
Hayden Hargreaves b17c5774e9 (UI): Implemented much of the frontend recipe creation wizard.
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.
2025-06-29 22:30:20 -07:00

7 lines
126 B
Go

package domain
type RecipeRepository interface {
// TODO: Not sure the input type yet
CreateRecipe(recipe *Recipe) error
}