add schema for MediaFile

This commit is contained in:
Thomas Peetz
2025-12-01 05:25:54 +01:00
parent d63120b092
commit 741032ec02
8 changed files with 281 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
package handler
import "github.com/gofiber/fiber/v2"
func GetHealth(c *fiber.Ctx) error {
return c.Status(200).JSON(&fiber.Map{
"status": "ok",
})
}