aboutsummaryrefslogtreecommitdiffstats
path: root/examples/ssl_hello_world/src/ssl_hello_world.app.src
blob: d628b68af91562a12e663f6db0e56a79addc170b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%% 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,
		ssl
	]},
	{mod, {ssl_hello_world_app, []}},
	{env, []}
]}.