Files
plantid-discord-bot/lib/mocks/nostrum_api.ex
T
2024-12-14 00:17:30 +01:00

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