Files
plantid-discord-bot/lib/mocks/nostrum_api.ex
T
2024-12-15 16:10:37 +01:00

12 lines
330 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_information() do
{:ok, %{name: "Test Bot", approximate_guild_count: 1, owner: %{username: "Test User"}}}
end
end