| 1234567891011121314151617181920212223242526272829 |
- ;;;; chatikbot.asd
- (asdf:defsystem #:chatikbot
- :description "Chatik Telegram bot"
- :author "Innokentiy Enikeev <me@enikesha.net>"
- :license "MIT"
- :depends-on (#:alexandria
- #:bordeaux-threads
- ;; #:cl-oauth
- #:clon
- #:dexador
- #:drakma
- #:flexi-streams
- #:local-time
- #:log4cl
- #:trivial-utf-8
- #:yason)
- :serial t
- :components ((:file "package")
- (:file "utils")
- ;; (:file "twitter")
- (:file "telegram")
- (:file "forecast")
- (:file "vk")
- (:file "finance")
- (:file "tumblr")
- (:file "patmatch")
- (:file "eliza")
- (:file "foursquare")
- (:file "chatikbot")))
|