cl-telegram-bot/cl-telegram-bot.asd

12 lines
429 B
Text
Raw Normal View History

2016-08-14 04:35:03 +02:00
(asdf:defsystem #:cl-telegram-bot
:description "Telegram Bot API"
2017-08-29 20:16:03 +01:00
:author "Rei <https://github.com/sovietspaceship>"
2016-08-14 04:35:03 +02:00
:license "MIT"
2019-08-24 11:32:31 +02:00
:depends-on (#:cl-json #:alexandria #:closer-mop #:dexador
#:lparallel #:trivial-types #:cl-arrows #:bordeaux-threads)
2016-08-14 04:35:03 +02:00
:serial t
2016-08-17 20:44:29 +02:00
:components ((:file "package")
2019-08-18 22:29:48 +02:00
(:file "API")
2019-08-24 11:32:31 +02:00
(:file "cl-telegram-bot")
(:file "cl-telegram-bot.auto-poll")))