summaryrefslogtreecommitdiff
path: root/src/plop_app.erl
blob: 767bf06789f18ef6a0ecfe0b0f9e046fd9796adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%%% Copyright (c) 2014, NORDUnet A/S.
%%% See LICENSE for licensing information.

-module(plop_app).
-behaviour(application).
-export([start/2, stop/1]).

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

stop(_State) ->
    ok.