mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
14 lines
330 B
Erlang
14 lines
330 B
Erlang
|
%% Generated automatically
|
||
|
%% DO NOT EDIT: run `make options` instead
|
||
|
|
||
|
-module(mod_version_opt).
|
||
|
|
||
|
-export([show_os/1]).
|
||
|
|
||
|
-spec show_os(gen_mod:opts() | global | binary()) -> boolean().
|
||
|
show_os(Opts) when is_map(Opts) ->
|
||
|
gen_mod:get_opt(show_os, Opts);
|
||
|
show_os(Host) ->
|
||
|
gen_mod:get_module_opt(Host, mod_version, show_os).
|
||
|
|