aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tcp_reverse/src/tcp_reverse.erl
blob: e20f17031db4602079273c5ff87efa75753f3880 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
%% Feel free to use, reuse and abuse the code in this file.

-module(tcp_reverse).

%% API.
-export([start/0]).

%% API.

start() ->
    io:format("starting ranch and tcp_reverse~n"),
	ok = application:start(ranch),
	ok = application:start(tcp_reverse).