mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
15 lines
290 B
Erlang
15 lines
290 B
Erlang
%% Feel free to use, reuse and abuse the code in this file.
|
|
|
|
{application, websocket, [
|
|
{description, "Cowboy websocket example."},
|
|
{vsn, "1"},
|
|
{modules, []},
|
|
{registered, [websocket_sup]},
|
|
{applications, [
|
|
kernel,
|
|
stdlib,
|
|
cowboy
|
|
]},
|
|
{mod, {websocket_app, []}},
|
|
{env, []}
|
|
]}.
|