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