/src/erlv8_app.erl
http://github.com/beamjs/erlv8 · Erlang · 16 lines · 7 code · 5 blank · 4 comment · 0 complexity · 3ef15001c1b1953f0c9c4e43d2cb2222 MD5 · raw file
- -module(erlv8_app).
- -behaviour(application).
- %% Application callbacks
- -export([start/2, stop/1]).
- %% ===================================================================
- %% Application callbacks
- %% ===================================================================
- start(_StartType, _StartArgs) ->
- erlv8_sup:start_link().
- stop(_State) ->
- ok.