From 835079d42bf9c626d0fb961f9ba6fdbbca19286d Mon Sep 17 00:00:00 2001 From: Rachel Fae Fox Date: Mon, 7 Nov 2022 22:00:10 -0500 Subject: [PATCH] started working on stuff for #1 --- lib/irc_bot.ex | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/irc_bot.ex b/lib/irc_bot.ex index f8209a1..94a3638 100755 --- a/lib/irc_bot.ex +++ b/lib/irc_bot.ex @@ -138,6 +138,15 @@ defmodule Discordirc.IRC do {:noreply, state} end + def handle_info({:discord_cmd, :kick, users}) do + end + def handle_info({:discord_cmd, :ban, users}) do + end + def handle_info({:discord_cmd, :mode, modestr}) do + end + def handle_info({:discord_cmd, :topic, topic}) do + end + def handle_info({:connected, server, port}, state) do Logger.debug("Connected to #{server}:#{port}") Logger.debug("Logging to #{server}:#{port} as #{state.nick}..")