This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
GGS/ebin/ggs.app

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, []}}
]}.