25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

Add behaviour to mod_vcard_xupdate DB modules

This commit is contained in:
Evgeniy Khramtsov 2016-05-01 11:03:20 +03:00
parent 3493a87469
commit 82082f1799
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,8 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
-module(mod_vcard_xupdate_riak). -module(mod_vcard_xupdate_riak).
-behaviour(mod_vcard_xupdate).
%% API %% API
-export([init/2, import/2, add_xupdate/3, get_xupdate/2, remove_xupdate/2]). -export([init/2, import/2, add_xupdate/3, get_xupdate/2, remove_xupdate/2]).

View File

@ -8,6 +8,8 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
-module(mod_vcard_xupdate_sql). -module(mod_vcard_xupdate_sql).
-behaviour(mod_vcard_xupdate).
%% API %% API
-export([init/2, import/2, add_xupdate/3, get_xupdate/2, remove_xupdate/2, -export([init/2, import/2, add_xupdate/3, get_xupdate/2, remove_xupdate/2,
import/1, export/1]). import/1, export/1]).