0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 20:50:24 +00:00
cowboy/examples/hello_world/src/hello_world.app.src
2012-07-13 10:15:22 +02:00

15 lines
283 B
Erlang

%% 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, []}
]}.