25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-20 16:15:59 +01:00

Implement gen_mod callback in ModPresenceDemo module

This commit is contained in:
Mickael Remond 2016-08-01 15:46:14 +02:00
parent 2ef58a33a9
commit 76eba3647a
No known key found for this signature in database
GPG Key ID: E6F6045D79965AA3

View File

@ -18,4 +18,9 @@ defmodule ModPresenceDemo do
info('Receive presence for #{user}') info('Receive presence for #{user}')
:none :none
end end
# gen_mod callbacks
def depends(_host, _opts), do: []
def mod_opt_type(_), do: []
end end