mirror of
https://github.com/TheRealOwenRees/plantid-discord-bot.git
synced 2026-07-23 04:26:57 +00:00
13 lines
300 B
Elixir
13 lines
300 B
Elixir
import Config
|
|
|
|
config :plantid_discord_bot,
|
|
api: Nostrum.Api
|
|
|
|
config :logger,
|
|
backends: [{PlantIdDiscordBot.DiscordLogger, :discord_logger}]
|
|
|
|
config :logger, :discord_logger,
|
|
webhook_url: System.get_env("LOGS_DISCORD_WEBHOOK_URL"),
|
|
level: :error,
|
|
bot_token: System.get_env("DISCORD_TOKEN")
|