13 lines
287 B
Erlang
13 lines
287 B
Erlang
%% 应用程序信息文件
|
|
{application, main, [
|
|
{description, "game server"}
|
|
,{vsn, "0.1"}
|
|
,{modules, [main]}
|
|
,{registered, []}
|
|
,{applications, [kernel, stdlib]}
|
|
,{mod, {main, []}}
|
|
,{start_phases, []}
|
|
,{env, []}
|
|
]
|
|
}.
|