mirror of
https://github.com/TheRealOwenRees/plantid-discord-bot.git
synced 2026-07-23 12:36:58 +00:00
9 lines
286 B
Elixir
9 lines
286 B
Elixir
defmodule PlantIdDiscordBotTest.Mocks.Nostrum.Api do
|
|
@moduledoc """
|
|
Mocks the Nostrum.Api module.
|
|
"""
|
|
|
|
def create_interaction_response(_interaction, response), do: {:ok, response}
|
|
def get_application_info(), do: {:ok, %{name: "Test Bot", owner: %{username: "Test User"}}}
|
|
end
|