aboutsummaryrefslogblamecommitdiffstats
path: root/examples/rest_basic_auth/src/rest_basic_auth.app.src
blob: c5f836b4c900963e5afb67c609e427830f9de824 (plain) (tree)
1
2
3
4
5
6
7

                                                           
                                


                                                                  
                                            




                        
                                         

                 
%% 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, []}
]}.