rest_simple_resource.erl 336 B

1234567891011121314
  1. -module(rest_simple_resource).
  2. -export([init/2]).
  3. -export([content_types_provided/2]).
  4. -export([get_text_plain/2]).
  5. init(Req, Opts) ->
  6. {cowboy_rest, Req, Opts}.
  7. content_types_provided(Req, State) ->
  8. {[{{<<"text">>, <<"plain">>, []}, get_text_plain}], Req, State}.
  9. get_text_plain(Req, State) ->
  10. {<<"This is REST!">>, Req, State}.