Documentation ¶
Index ¶
- Variables
- func ConvertDefaultHeaderToCustomHeader(h *http.Header) *datastore.HttpHeader
- func EndOfMonth(t time.Time) time.Time
- func GenerateRandomString(n int) (string, error)
- func IsJSON(s string) bool
- func IsStringEmpty(s string) bool
- func JsonReMarshalString(s string) (string, error)
- func NewDateTime() *primitive.DateTime
- func ReadJSON(r *http.Request, dst interface{}) error
- func StartOfMonth(t time.Time) time.Time
- func Validate(dst interface{}) error
- type Response
- type ServerResponse
- type ServiceError
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrEmptyBody = errors.New("body must not be empty")
Functions ¶
func ConvertDefaultHeaderToCustomHeader ¶
func ConvertDefaultHeaderToCustomHeader(h *http.Header) *datastore.HttpHeader
ConvertDefaultHeaderToCustomHeader converts http.Header to convoy.HttpHeader
func GenerateRandomString ¶
func IsStringEmpty ¶
IsStringEmpty checks if the given string s is empty or not
func JsonReMarshalString ¶
func NewDateTime ¶
Types ¶
type ServerResponse ¶
type ServerResponse struct { Response Status bool `json:"status"` Message string `json:"message"` Data json.RawMessage `json:"data,omitempty"` }
func NewErrorResponse ¶
func NewErrorResponse(msg string, statusCode int) ServerResponse
func NewServerResponse ¶
func NewServerResponse(msg string, object interface{}, statusCode int) ServerResponse
func NewServiceErrResponse ¶
func NewServiceErrResponse(err error) ServerResponse
type ServiceError ¶
type ServiceError struct {
// contains filtered or unexported fields
}
func NewServiceError ¶
func NewServiceError(errCode int, errMsg error) *ServiceError
func (*ServiceError) ErrCode ¶
func (s *ServiceError) ErrCode() int
func (*ServiceError) Error ¶
func (s *ServiceError) Error() string
Click to show internal directories.
Click to hide internal directories.