aboutsummaryrefslogtreecommitdiffstats
path: root/examples/websocket/src/websocket.app.src
blob: c6ada82ea720cb787ad9abd7672a27c54dcd4286 (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, [websocket_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {websocket_app, []}},
	{env, []}
]}.