12 lines
252 B
Erlang
12 lines
252 B
Erlang
{application, ggs,
|
|
[{description, "The Generic Game Server"},
|
|
{vsn, "0.1.0"},
|
|
{modules, [
|
|
ggs_app,
|
|
ggs_sup
|
|
]},
|
|
{registered, [ggs_sup]},
|
|
{applications, [kernel, stdlib]},
|
|
{mod, {ggs_app, []}}
|
|
]}.
|
|
|