| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ;;;; chatikbot.asd
- (asdf:defsystem #:chatikbot
- :description "Chatik Telegram bot"
- :author "Innokentiy Enikeev <me@enikesha.net>"
- :license "MIT"
- :depends-on (#:alexandria
- #:adw-charting-vecto
- #:bordeaux-threads
- #:cl-cookie
- #:cl-date-time-parser
- #:cl-ppcre
- #:cl-base64
- #:clon
- #:clss
- #:dexador
- #:eager-future2
- #:hunchentoot
- #:ironclad
- #:local-time
- #:log4cl
- #:plump
- #:sqlite
- #:trivial-garbage
- #:uuid
- #:quri
- #:jonathan
- #:yason)
- :serial t
- :components ((:file "patmatch")
- (:file "utils")
- (:file "eliza")
- (:file "secrets")
- (:file "db")
- (:file "telegram")
- (:file "crypto")
- (:file "macros")
- (:file "bot")
- (:file "inline")
- (:file "poller")
- (:file "chat-cron")
- (:file "server")
- (:file "common")
- (:file "scraping")
- (:file "chatikbot")))
|