websocket.erl 256 B

123456789101112
  1. %% Feel free to use, reuse and abuse the code in this file.
  2. -module(websocket).
  3. %% API.
  4. -export([start/0]).
  5. start() ->
  6. ok = application:start(crypto),
  7. ok = application:start(ranch),
  8. ok = application:start(cowboy),
  9. ok = application:start(websocket).