View Source Novu.Http (Novu v0.2.0)

Helper functions for interacting with Req.

Link to this section Summary

Link to this section Types

@type response() :: {:ok, map()} | {:error, list() | :timeout | any()}

Link to this section Functions

@spec delete(url :: Req.url()) :: response()
@spec get(url :: Req.url(), params :: map()) :: response()
@spec patch(url :: Req.url(), body :: map()) :: response()
@spec post(url :: Req.url(), body :: map()) :: response()
@spec put(url :: Req.url(), params :: map()) :: response()