Documentation ¶ Index ¶ type Handler func NewHandler(c *core.Core) *Handler type PingHandler func NewPingHandler(c *core.Core) *PingHandler func (h *PingHandler) Ping(c *fiber.Ctx) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Handler ¶ type Handler struct { Core *core.Core Ping *PingHandler } func NewHandler ¶ func NewHandler(c *core.Core) *Handler type PingHandler ¶ type PingHandler struct { Core *core.Core } func NewPingHandler ¶ func NewPingHandler(c *core.Core) *PingHandler func (*PingHandler) Ping ¶ func (h *PingHandler) Ping(c *fiber.Ctx) error Ping @summary Ping to the service @description Do a ping to service just make sure service is working normally. @tags tools @produce json @router /api/v1/ping [get] @success 202 {object} utils.JSONResponse Source Files ¶ View all Source files handler.goping.go Click to show internal directories. Click to hide internal directories.