16 lines
445 B
Erlang
16 lines
445 B
Erlang
|
|
%%----------------------------------------------------
|
||
|
|
%% 此文件由数据工具生成 homeland_data.xml
|
||
|
|
%% ¼ÒÔ°Êý¾Ý
|
||
|
|
%%----------------------------------------------------
|
||
|
|
-module(homeland_data).
|
||
|
|
-export([
|
||
|
|
get/1,
|
||
|
|
is_default_theme/1
|
||
|
|
]).
|
||
|
|
-include("common.hrl").
|
||
|
|
|
||
|
|
|
||
|
|
get(_Info)-> ?DATA_ERR("get_data_not_exist===>~w", [_Info]), undefined.
|
||
|
|
|
||
|
|
|
||
|
|
is_default_theme(_Info)-> ?DATA_ERR("is_default_theme_data_not_exist===>~w", [_Info]), undefined.
|