summaryrefslogtreecommitdiff
path: root/apps/rexi/src/rexi_app.erl
blob: dda57752ae5cf8cb29c7bfd284c804d0d1bd29f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
-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.