mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
14 lines
339 B
Erlang
14 lines
339 B
Erlang
%% Generated automatically
|
|
%% DO NOT EDIT: run `make options` instead
|
|
|
|
-module(mod_shared_roster_opt).
|
|
|
|
-export([db_type/1]).
|
|
|
|
-spec db_type(gen_mod:opts() | global | binary()) -> atom().
|
|
db_type(Opts) when is_map(Opts) ->
|
|
gen_mod:get_opt(db_type, Opts);
|
|
db_type(Host) ->
|
|
gen_mod:get_module_opt(Host, mod_shared_roster, db_type).
|
|
|