diff options
Diffstat (limited to 'src/mod_echo_opt.erl')
-rw-r--r-- | src/mod_echo_opt.erl | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mod_echo_opt.erl b/src/mod_echo_opt.erl deleted file mode 100644 index 8c030e6ab..000000000 --- a/src/mod_echo_opt.erl +++ /dev/null @@ -1,20 +0,0 @@ -%% Generated automatically -%% DO NOT EDIT: run `make options` instead - --module(mod_echo_opt). - --export([host/1]). --export([hosts/1]). - --spec host(gen_mod:opts() | global | binary()) -> binary(). -host(Opts) when is_map(Opts) -> - gen_mod:get_opt(host, Opts); -host(Host) -> - gen_mod:get_module_opt(Host, mod_echo, host). - --spec hosts(gen_mod:opts() | global | binary()) -> [binary()]. -hosts(Opts) when is_map(Opts) -> - gen_mod:get_opt(hosts, Opts); -hosts(Host) -> - gen_mod:get_module_opt(Host, mod_echo, hosts). - |