blob: dda57752ae5cf8cb29c7bfd284c804d0d1bd29f4 [file] [log] [blame]
-module(rexi_app).
-behaviour(application).
-export([start/2, stop/1]).
-include_lib("eunit/include/eunit.hrl").
start(_Type, StartArgs) ->
rexi_sup:start_link(StartArgs).
stop(_State) ->
ok.