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

10 lines
315 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-16 17:35:34 +02:00
:depends-on (#:cl-json #:drakma #:alexandria :closer-mop)
2016-08-14 04:35:03 +02:00
:serial t
2016-08-17 20:44:29 +02:00
:components ((:file "package")
2019-08-16 17:35:34 +02:00
(:file "cl-telegram-bot")
(:file "API")))