discord.clj icon indicating copy to clipboard operation
discord.clj copied to clipboard

bot/create-bot throwing NoClassDefFoundError

Open FullKickProductions opened this issue 2 years ago • 0 comments

Trying to set up a notifications bot using this library. Not sure if I'm missing an import or something?

(ns gcloud-monitoring.core
  (:require [ring.adapter.jetty :refer [run-jetty]]
            [ring.util.request]
            [clojure.data.json :as json]
            [discord.http]
            [discord.bot :as bot]
            [discord.types]))

(bot/create-bot "CloudNotifications"
                "!"
                (discord.types/configuration-auth)) => Execution error (NoClassDefFoundError) at org.eclipse.jetty.websocket.common.extensions.fragment.FragmentExtension/<init> (FragmentExtension.java:44).

FullKickProductions avatar Jun 29 '22 09:06 FullKickProductions