Revert "Removes internal api package"

This reverts commit c65e239b68.
This commit is contained in:
Dennis Schoepf 2024-04-28 19:00:19 +02:00
parent c19a675e36
commit 4748435779
3 changed files with 96 additions and 0 deletions

9
internal/api/users.go Normal file
View file

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