mirror of
https://github.com/vale981/cl-telegram-bot
synced 2025-03-04 09:11:40 -05:00
11 lines
449 B
Common Lisp
11 lines
449 B
Common Lisp
(asdf:defsystem #:cl-telegram-bot
|
|
:description "Telegram Bot API"
|
|
:author "Rei <https://github.com/sovietspaceship>"
|
|
:license "MIT"
|
|
:depends-on (#:cl-json #:alexandria #:closer-mop #:dexador
|
|
#:lparallel #:trivial-types #:cl-arrows #:bordeaux-threads #:log4cl #:cl-ppcre)
|
|
:serial t
|
|
:components ((:file "package")
|
|
(:file "API")
|
|
(:file "cl-telegram-bot")
|
|
(:file "cl-telegram-bot.auto-poll")))
|