mirror of
https://github.com/yanislav-igonin/micrach
synced 2025-04-19 11:20:33 +03:00
18 lines
346 B
Go
18 lines
346 B
Go
package gateway
|
|
|
|
import (
|
|
"micrach/config"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func Ping(c *fiber.Ctx) error {
|
|
headerKey := c.GetReqHeaders()["Authorization"]
|
|
if config.App.Gateway.ApiKey != headerKey {
|
|
return c.Status(fiber.StatusUnauthorized).JSON(fiber.Map{"error": "Unauthorized"})
|
|
}
|
|
return c.JSON(fiber.Map{
|
|
"message": "pong",
|
|
})
|
|
}
|