35 lines
656 B
Go
35 lines
656 B
Go
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")
|
|
}
|