2024-01-03 23:25:17 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ectrc/snow/aid"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GetFriendList(c *fiber.Ctx) error {
|
2024-01-28 19:40:45 +00:00
|
|
|
return c.Status(200).JSON([]aid.JSON{})
|
2024-01-03 23:25:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func PostCreateFriend(c *fiber.Ctx) error {
|
|
|
|
return c.SendStatus(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteFriend(c *fiber.Ctx) error {
|
|
|
|
return c.SendStatus(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetFriendListSummary(c *fiber.Ctx) error {
|
2024-01-28 19:40:45 +00:00
|
|
|
return c.Status(200).JSON([]aid.JSON{})
|
2024-01-03 23:25:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetPersonSearch(c *fiber.Ctx) error {
|
2024-01-28 19:40:45 +00:00
|
|
|
return c.Status(200).JSON([]aid.JSON{})
|
2024-01-03 23:25:17 +00:00
|
|
|
}
|