rebar/priv/templates/simpleapp.app

17 lines
307 B
Text
Raw Normal View History

2010-01-08 05:18:55 +00:00
{application, {{appid}},
[
{description, ""},
{vsn, "1"},
{modules, [
{{appid}}_app,
{{appid}}_sup
]},
{registered, []},
{applications, [
kernel,
stdlib
]},
{mod, { {{appid}}_app, []}},
2010-01-08 05:18:55 +00:00
{env, []}
]}.