-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.lisp
36 lines (33 loc) · 940 Bytes
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
;;;; package.lisp
(defpackage #:harlie
(:use #:cl
#:alexandria
#:bt
;; #:lparallel
#:cl-cron
;; #:cl-log
#:log4cl
#:cl-ppcre
;; #:cl-who
#:closure-html
#:cxml-stp
#:drakma
#:hunchentoot
#:irc
#:json
#:local-time
#:parse-number
#:postmodern
#:split-sequence)
(:shadowing-import-from :closure-html :attribute :text :comment)
(:shadowing-import-from :hunchentoot
:host :*header-stream* :cookie-path :cookie-expires :cookie-name
:cookie-domain :parameter-error :cookie-value :url-encode)
(:shadowing-import-from :cl-irc :connect)
;; (:shadowing-import-from :cl-who :with-html-output)
(:shadowing-import-from :drakma :header-value)
;; (:shadowing-import-from :cl-log :log-message :make-timestamp :timestamp)
(:shadowing-import-from :postmodern :encode-json-to-string)
(:export #:run-bot
#:kill-bot))
(local-time:set-local-time-cl-postgres-readers)