diff options
Diffstat (limited to 'handlers')
| -rw-r--r-- | handlers/shopping_list.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/handlers/shopping_list.go b/handlers/shopping_list.go index af07954..bdd7468 100644 --- a/handlers/shopping_list.go +++ b/handlers/shopping_list.go @@ -11,3 +11,18 @@ func LoadElements(c *gin.Context) { "Name": "Shopping List", }) } + +func CreateEntry(c *gin.Context) { + + c.Redirect(http.StatusFound, "/") +} + +func DeleteEntries(c *gin.Context) { + + c.Redirect(http.StatusFound, "/") +} + +func ToggleEntry(c *gin.Context) { + + c.Redirect(http.StatusFound, "/") +} |