Files
virteen/internal/app/api/v1/ping.go
2023-06-09 11:33:10 +02:00

10 lines
118 B
Go

package v1
import (
"github.com/gofiber/fiber/v2"
)
func Ping(c *fiber.Ctx) error {
return c.SendString("pong")
}