blob: eeab8354ae3e9dae7cafd6dfa73e55faa7bbb895 (
plain) (
tree)
|
|
%% Feel free to use, reuse and abuse the code in this file.
{application, hello_world, [
{description, "Cowboy Hello World example."},
{vsn, "1"},
{modules, []},
{registered, []},
{applications, [
kernel,
stdlib,
cowboy
]},
{mod, {hello_world_app, []}},
{env, []}
]}.
|