mod_mycelium test
This commit is contained in:
parent
3bf2ff8f5a
commit
3c6f475891
1 changed files with 21 additions and 0 deletions
21
comm/mod_mycelium.erl
Normal file
21
comm/mod_mycelium.erl
Normal file
|
@ -0,0 +1,21 @@
|
|||
-module(mod_mycelium).
|
||||
-author("nik gaffney <nik@fo.am>").
|
||||
-behavior(gen_mod).
|
||||
-include("ejabberd.hrl").
|
||||
|
||||
%% x.ref
|
||||
%% -> http://www.process-one.net/en/wiki/ejabberd_module_development/
|
||||
%% -> http://anders.conbere.org/journal/building-ejabberd-modules-part-2-generic-modules/
|
||||
|
||||
-export([start/2, stop/1]).
|
||||
|
||||
start(_Host, _Opt) -> ok.
|
||||
stop(_Host) -> ok.
|
||||
|
||||
start(_Host, _Opt) ->
|
||||
?DEBUG("MYCELIUM LOADING...", []).
|
||||
|
||||
%%-define(PROCNAME, ejabberd_mycelium).
|
||||
%%-define(BOTNAME, mycelium).
|
||||
|
||||
|
Loading…
Reference in a new issue