Create lists model & controllers
This commit is contained in:
parent
52951753a1
commit
fe71c07e17
4 changed files with 75 additions and 4 deletions
35
controllers/lists.go
Normal file
35
controllers/lists.go
Normal 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")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue