aboutsummaryrefslogtreecommitdiff
path: root/lib/command/meme.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/command/meme.ex')
-rw-r--r--lib/command/meme.ex6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/command/meme.ex b/lib/command/meme.ex
index 3c51334..5be4582 100644
--- a/lib/command/meme.ex
+++ b/lib/command/meme.ex
@@ -1,6 +1,4 @@
-alias Nostrum.Api
alias Nostrum.Struct.Message
-alias Thulani.Command.Util
defmodule Thulani.Command.Meme do
use GenServer
@@ -47,12 +45,12 @@ defmodule Thulani.Command.Meme do
end
@impl true
- def handle_cast(%Request{name: :random, msg: msg, audio: audio}, state) do
+ def handle_cast(%Request{name: :random, msg: _msg, audio: _audio}, state) do
{:noreply, state}
end
@impl true
- def handle_cast(%Request{name: name, msg: msg}, state) do
+ def handle_cast(%Request{name: _name, msg: _msg}, state) do
{:noreply, state}
end
end