/src/erlv8_app.erl

http://github.com/beamjs/erlv8 · Erlang · 16 lines · 7 code · 5 blank · 4 comment · 0 complexity · 3ef15001c1b1953f0c9c4e43d2cb2222 MD5 · raw file

  1. -module(erlv8_app).
  2. -behaviour(application).
  3. %% Application callbacks
  4. -export([start/2, stop/1]).
  5. %% ===================================================================
  6. %% Application callbacks
  7. %% ===================================================================
  8. start(_StartType, _StartArgs) ->
  9. erlv8_sup:start_link().
  10. stop(_State) ->
  11. ok.