%%% Copyright (c) 2014, NORDUnet A/S.
%%% See LICENSE for licensing information.

-module(catlfish_app).

-behaviour(application).

%% Application callbacks
-export([start/2, stop/1]).

%% ===================================================================
%% Application callbacks
%% ===================================================================

dummy() ->
    receive
    after
        infinity ->
            none
    end.

start(_StartType, _StartArgs) ->
    io:format("starting catlfish~n", []),
    Pid = spawn(fun () ->
                        dummy()
                end),
    {ok, Pid}.

stop(_State) ->
    ok.