aboutsummaryrefslogtreecommitdiffstats
path: root/examples/ssl_hello_world/src/ssl_hello_world.app.src
blob: 514da1c1b54c0ad4f0cfbb8c46c24f3dab79f442 (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, ssl_hello_world, [
	{description, "Cowboy Hello World example with SSL."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {ssl_hello_world_app, []}},
	{env, []}
]}.