mirror of
https://github.com/ubf/ubf.git
synced 2026-04-30 08:39:32 +00:00
19 lines
396 B
Erlang
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, []} }
|
|
]
|
|
}.
|