diff options
Diffstat (limited to 'lib/command/command.ex')
| -rw-r--r-- | lib/command/command.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/command/command.ex b/lib/command/command.ex index f83f02b..07be96c 100644 --- a/lib/command/command.ex +++ b/lib/command/command.ex @@ -17,12 +17,12 @@ defmodule Thulani.Command do end @impl true - def handle_info(Util.command("meme", "", msg), state) do + def handle_info(Util.command("meme", "", _msg), state) do {:noreply, state} end @impl true - def handle_info(Util.command("meme", rest, msg), state) do + def handle_info(Util.command("meme", rest, _msg), state) do case rest do "" -> Thulani.Meme end @@ -30,7 +30,7 @@ defmodule Thulani.Command do {:noreply, state} end - def handle_info(Util.command("http", rest, msg), state) do + def handle_info(Util.command("http", _rest, _msg), _state) do end def handle_info(Util.command("roll", rest, msg), state) do |
