summaryrefslogtreecommitdiff
path: root/src/plop_app.erl
blob: d2e99acf41936020bc849d8e9650deea87409dc8 (plain)
1
2
3
4
5
6
7
8
9
-module(plop_app).
-behaviour(application).
-export([start/2, stop/1]).

start(_Type, Args) ->
    plop_sup:start_link(Args).

stop(_State) ->
    ok.