freed/internal/api/users.go
Dennis Schoepf c973859f7f Implements api routes and api key auth
CAUTION: Temporary api key is hardcoded, must be changed
2024-04-26 17:23:55 +02:00

9 lines
154 B
Go

package api
import (
"github.com/gofiber/fiber/v2"
)
func FetchAllUsersHandler(ctx *fiber.Ctx) error {
return ctx.JSON(&fiber.Map{"users": "none"})
}