rebar/inttest/erlc/src/foo_app.erl

11 lines
149 B
Erlang
Raw Normal View History

2014-03-05 16:59:35 +00:00
-module(foo_app).
-behaviour(application).
-export([start/2,
stop/1]).
start(_Type, _Args) -> foo_sup:start_link().
stop(_State) -> ok.