0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00
cowboy/examples/websocket/src/websocket.app.src

16 lines
290 B
Text
Raw Normal View History

2013-01-23 15:05:35 +01:00
%% Feel free to use, reuse and abuse the code in this file.
{application, websocket, [
{description, "Cowboy websocket example."},
{vsn, "1"},
{modules, []},
{registered, [websocket_sup]},
2013-01-23 15:05:35 +01:00
{applications, [
kernel,
stdlib,
cowboy
]},
{mod, {websocket_app, []}},
{env, []}
]}.