hello_h.erl 169 B

12345678
  1. %% This module sends a hello world response.
  2. -module(hello_h).
  3. -export([init/2]).
  4. init(Req, Opts) ->
  5. {ok, cowboy_req:reply(200, [], <<"Hello world!">>, Req), Opts}.