1
0
mirror of https://github.com/ubf/ubf.git synced 2026-04-30 08:39:32 +00:00
Files
ubf/test/eunit/stateless_plugin.app
2010-12-05 23:17:31 +09:00

19 lines
396 B
Erlang

%%% -*- mode: erlang -*-
%%%
{application, stateless_plugin,
[
{description, "STATELESS_PLUGIN"},
{vsn, "0.01"},
{id, "STATELESS_PLUGIN"},
{modules, [
%% TODO: fill in this list, perhaps
]
},
{registered, [ ] },
%% NOTE: do not list applications which are load-only!
{applications, [ kernel, stdlib, sasl ] },
{mod, {stateless_plugin_app, []} }
]
}.