blob: c9419ad8a6fcfb7cfaa17d6a865f1ed651b63355 (
plain) (
tree)
|
|
-module(provide_callback_missing_h).
-export([init/2]).
-export([content_types_provided/2]).
init(Req, State) ->
{cowboy_rest, Req, State}.
content_types_provided(Req, State) ->
ct_helper_error_h:ignore(cowboy_rest, set_resp_body, 2),
{[{<<"text/plain">>, provide}], Req, State}.
|