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

{application, tcp_reverse, [
	{description, "Ranch TCP reverse example."},
	{vsn, "1"},
	{modules, []},
	{registered, [tcp_reverse_sup]},
	{applications, [
		kernel,
		stdlib,
		ranch
	]},
	{mod, {tcp_reverse_app, []}},
	{env, []}
]}.