
Mnesia has now been fully removed from EGS. It will be replaced by Riak at a later time, when we need to store permanent data to disk.
16 lines
244 B
Erlang
16 lines
244 B
Erlang
%%-*- mode: erlang -*-
|
|
{application, egs, [
|
|
{description, "EGS online action-RPG game server"},
|
|
{vsn, "0.9"},
|
|
{modules, []},
|
|
{registered, []},
|
|
{applications, [
|
|
kernel,
|
|
stdlib,
|
|
crypto,
|
|
ssl
|
|
]},
|
|
{mod, {egs_app, []}},
|
|
{env, []}
|
|
]}.
|