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