intial commit

This commit is contained in:
2026-05-25 11:45:56 +05:30
commit 6ab508560f
73 changed files with 23713 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package controllers
import (
"net/http"
"github.com/gofiber/fiber/v2"
)
func PublishLogs(c *fiber.Ctx) error {
return c.JSON(fiber.Map{
"status": true,
"code": http.StatusConflict,
"message": "Heloo",
})
}