aboutsummaryrefslogtreecommitdiffstats
path: root/examples/websocket/src/websocket.app.src
blob: 4fa4f785f9104bfa64323859e7c3c3c8a1ddd0d7 (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, websocket, [
	{description, "Cowboy websocket example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {websocket_app, []}},
	{env, []}
]}.