24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-05-31 21:07:55 +02:00
xmpp.chapril.org-ejabberd/src/mod_pres_counter_opt.erl
2019-06-14 12:33:26 +03:00

21 lines
578 B
Erlang

%% Generated automatically
%% DO NOT EDIT: run `make options` instead
-module(mod_pres_counter_opt).
-export([count/1]).
-export([interval/1]).
-spec count(gen_mod:opts() | global | binary()) -> pos_integer().
count(Opts) when is_map(Opts) ->
gen_mod:get_opt(count, Opts);
count(Host) ->
gen_mod:get_module_opt(Host, mod_pres_counter, count).
-spec interval(gen_mod:opts() | global | binary()) -> pos_integer().
interval(Opts) when is_map(Opts) ->
gen_mod:get_opt(interval, Opts);
interval(Host) ->
gen_mod:get_module_opt(Host, mod_pres_counter, interval).