func()

in pkg/api/postservice_api.go [21:29]


func (h *PostServiceApi) PostServiceGetApi(c *gin.Context) {
	id := c.Param("id")
	post, err := h.PostService.Get(id)
	if handleError400(c, err) {
		return
	}

	c.JSON(http.StatusOK, post)
}