Current section
Files
Jump to
Current section
Files
src/dove@response.erl
-module(dove@response).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function]).
-export_type([body/1]).
-type body(HHD) :: {json_decoded, HHD} |
{plain_text, binary()} |
{octet_stream, bitstring()} |
{headers_say_json, binary()} |
{invalid_or_unexpected_json, bitstring(), gleam@json:decode_error()}.