0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00
cowboy/examples/hello_world/src/hello_world.erl

16 lines
302 B
Erlang
Raw Normal View History

%% Feel free to use, reuse and abuse the code in this file.
2012-07-13 10:15:22 +02:00
-module(hello_world).
%% API.
-export([start/0]).
%% API.
start() ->
ok = application:start(crypto),
ok = application:start(cowlib),
ok = application:start(ranch),
2012-07-13 10:15:22 +02:00
ok = application:start(cowboy),
ok = application:start(hello_world).