mod_mycelium test

This commit is contained in:
nik gaffney 2009-04-29 18:39:07 +02:00
parent 3bf2ff8f5a
commit 3c6f475891

21
comm/mod_mycelium.erl Normal file
View 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).