mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
Rename the basic_auth example to rest_basic_auth
This commit is contained in:
parent
51ce122858
commit
bb9a2e975e
6 changed files with 8 additions and 8 deletions
25
examples/rest_basic_auth/src/rest_basic_auth_app.erl
Normal file
25
examples/rest_basic_auth/src/rest_basic_auth_app.erl
Normal file
|
@ -0,0 +1,25 @@
|
|||
%% Feel free to use, reuse and abuse the code in this file.
|
||||
|
||||
%% @private
|
||||
-module(rest_basic_auth_app).
|
||||
-behaviour(application).
|
||||
|
||||
%% API.
|
||||
-export([start/2]).
|
||||
-export([stop/1]).
|
||||
|
||||
%% API.
|
||||
|
||||
start(_Type, _Args) ->
|
||||
Dispatch = cowboy_router:compile([
|
||||
{'_', [
|
||||
{"/", toppage_handler, []}
|
||||
]}
|
||||
]),
|
||||
{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [
|
||||
{env, [{dispatch, Dispatch}]}
|
||||
]),
|
||||
rest_basic_auth_sup:start_link().
|
||||
|
||||
stop(_State) ->
|
||||
ok.
|
Loading…
Add table
Add a link
Reference in a new issue