Create lists model & controllers

This commit is contained in:
William Bouzourène 2024-12-30 14:46:42 +01:00
parent fd49b69799
commit 0159e8d528
4 changed files with 75 additions and 4 deletions

35
controllers/lists.go Normal file
View file

@ -0,0 +1,35 @@
package controllers
import "github.com/gofiber/fiber/v2"
func Lists(c *fiber.Ctx) error {
return c.SendString("Lists")
}
func ListShow(c *fiber.Ctx) error {
return c.SendString("ListShow")
}
func ListAdd(c *fiber.Ctx) error {
return c.SendString("ListAdd")
}
func ListEdit(c *fiber.Ctx) error {
return c.SendString("ListEdit")
}
func ListDelete(c *fiber.Ctx) error {
return c.SendString("ListDelete")
}
func ListItemAdd(c *fiber.Ctx) error {
return c.SendString("ListItemAdd")
}
func ListItemEdit(c *fiber.Ctx) error {
return c.SendString("ListItemEdit")
}
func ListItemDelete(c *fiber.Ctx) error {
return c.SendString("ListItemDelete")
}