0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-16 05:00:24 +00:00
cowboy/examples/cookie/src/cookie.app.src

16 lines
268 B
Text
Raw Normal View History

2012-12-20 14:40:22 +01:00
%% Feel free to use, reuse and abuse the code in this file.
{application, cookie, [
{description, "Cowboy Cookie example."},
{vsn, "1"},
{modules, []},
{registered, []},
{applications, [
kernel,
stdlib,
cowboy
]},
{mod, {cookie_app, []}},
{env, []}
]}.