mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
9 lines
169 B
Erlang
9 lines
169 B
Erlang
![]() |
%% This module sends a hello world response.
|
||
|
|
||
|
-module(hello_h).
|
||
|
|
||
|
-export([init/2]).
|
||
|
|
||
|
init(Req, Opts) ->
|
||
|
{ok, cowboy_req:reply(200, [], <<"Hello world!">>, Req), Opts}.
|