Files
mp-qvyun/backend/modules/users/controller.go
2024-12-08 13:31:39 +08:00

15 lines
245 B
Go

package users
import "github.com/gofiber/fiber/v3"
// @provider
type Controller struct {
svc *Service
}
// List
func (c *Controller) List(ctx fiber.Ctx) error {
return ctx.SendString(ctx.Params("tenant", "no user"))
return ctx.JSON(nil)
}