aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tcp_echo/src/tcp_echo.app.src
blob: 103fd564c15f87d49ea6171bff64417b0317c79f (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_echo, [
	{description, "Ranch TCP Echo example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		ranch
	]},
	{mod, {tcp_echo_app, []}},
	{env, []}
]}.