Packages

GNU gettext compatible translation library

Current section

Files

Jump to
gettexter src gettexter_app.erl
Raw

src/gettexter_app.erl

-module(gettexter_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%% ===================================================================
%% Application callbacks
%% ===================================================================
start(_StartType, _StartArgs) ->
gettexter_sup:start_link().
stop(_State) ->
ok.