Files
webhook-everything/backend/internal/common/textresponse.go
Samuel Pua 53829a2788
All checks were successful
Webhook-Everything/Webhook-Everything/pipeline/head This commit looks good
Feat(Initial): Initial Go codebase
2022-05-29 00:06:52 +08:00

25 lines
487 B
Go

package common
import (
"net/http"
"github.com/go-chi/render"
)
type TextResponse struct {
Status string `json:"status"` // user-level status message
Text string `json:"text"` // application-specific error code
}
func (e *TextResponse) Render(w http.ResponseWriter, r *http.Request) error {
render.Status(r, http.StatusOK)
return nil
}
func NewGenericTextResponse(status string, text string) render.Renderer {
return &TextResponse{
Status: status,
Text: text,
}
}