Packages

dev watcher that auto compiles and reloads modules

Current section

Files

Jump to
reup src reup_app.erl
Raw

src/reup_app.erl

-module(reup_app).
-behaviour(application).
-export([start/0]).
-export([start/2]).
-export([stop/1]).
start() ->
application:start(reup).
start(_Type, _Args) ->
reup_sup:start_link().
stop(_State) ->
ok.