mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-15 12:40:25 +00:00
16 lines
289 B
Erlang
16 lines
289 B
Erlang
%% Feel free to use, reuse and abuse the code in this file.
|
|
|
|
{application, cookie, [
|
|
{description, "Cowboy Cookie example."},
|
|
{vsn, "1"},
|
|
{modules, []},
|
|
{registered, [cookie_sup]},
|
|
{applications, [
|
|
kernel,
|
|
stdlib,
|
|
cowboy,
|
|
erlydtl
|
|
]},
|
|
{mod, {cookie_app, []}},
|
|
{env, []}
|
|
]}.
|