diff --git a/src/channels_plugin.erl b/src/channels_plugin.erl index 21259f5..bdecfb9 100644 --- a/src/channels_plugin.erl +++ b/src/channels_plugin.erl @@ -1,8 +1,7 @@ -module(channels_plugin). --behaviour(gen_event). - -author("gdamjan@gmail.com"). +-behaviour(gen_event). -export([init/1, handle_event/2, terminate/2, handle_call/2, handle_info/2, code_change/3]). diff --git a/src/ctcp_plugin.erl b/src/ctcp_plugin.erl index 11d12a9..ab9278c 100644 --- a/src/ctcp_plugin.erl +++ b/src/ctcp_plugin.erl @@ -1,11 +1,11 @@ -module(ctcp_plugin). --behaviour(gen_event). - -author("gdamjan@gmail.com"). --include_lib("ircbot.hrl"). +-behaviour(gen_event). -export([init/1, handle_event/2, terminate/2, handle_call/2, handle_info/2, code_change/3]). +-include("ircbot.hrl"). + init(_Args) -> {ok, []}. diff --git a/src/pong_plugin.erl b/src/pong_plugin.erl index abb51c6..dce5201 100644 --- a/src/pong_plugin.erl +++ b/src/pong_plugin.erl @@ -1,8 +1,7 @@ -module(pong_plugin). --behaviour(gen_event). - -author("gdamjan@gmail.com"). +-behaviour(gen_event). -export([init/1, handle_event/2, terminate/2, handle_call/2, handle_info/2, code_change/3]).