mirror of
https://github.com/vale981/cl-telegram-bot
synced 2025-03-04 17:21:41 -05:00
Fixing issue with define-constant throwing error
This commit is contained in:
parent
2d337a7d36
commit
735cca13bf
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
:description "Telegram Bot API"
|
||||
:author "Rei <https://github.com/sovietspaceship>"
|
||||
:license "MIT"
|
||||
:depends-on (#:cl-json #:drakma)
|
||||
:depends-on (#:cl-json #:drakma #:alexandria)
|
||||
:serial t
|
||||
:components ((:file "package")
|
||||
(:file "cl-telegram-bot")))
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
(in-package :cl-telegram-bot)
|
||||
|
||||
(define-constant +http-ok+ 200 :test #'=)
|
||||
(alexandria:define-constant +http-ok+ 200 :test #'=)
|
||||
|
||||
(defclass bot ()
|
||||
((id
|
||||
|
|
Loading…
Add table
Reference in a new issue