blob: 4184227403b8f41cf915a43ec0193d4ab70cc789 (
plain) (
tree)
|
|
%% Feel free to use, reuse and abuse the code in this file.
-module(push_h).
-export([init/2]).
init(Req, State) ->
cowboy_req:push("/", #{<<"accept">> => <<"text/plain">>}, Req),
cowboy_req:push("/empty", #{<<"accept">> => <<"text/plain">>}, Req),
{ok, cowboy_req:reply(200, #{
<<"content-type">> => <<"text/plain">>
}, <<"Hello world!">>, Req), State}.
|