0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 20:50:24 +00:00

Rename the basic_auth example to rest_basic_auth

This commit is contained in:
Loïc Hoguin 2013-09-07 16:23:13 +02:00
parent 51ce122858
commit bb9a2e975e
6 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,15 @@
%% 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, []},
{applications, [
kernel,
stdlib,
cowboy
]},
{mod, {rest_basic_auth_app, []}},
{env, []}
]}.