-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.lisp
96 lines (96 loc) · 1.4 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
(defpackage #:org.shirakumo.multiposter
(:use #:cl)
(:local-nicknames
(#:cohost #:org.shirakumo.clohost))
;; protocol.lisp
(:export
#:add-tag
#:post
#:ready-p
#:setup
#:undo
#:failed-p
#:add-client
#:add-profile
#:add-schedule
#:find-profile
#:find-client
#:find-schedule
#:schedule
#:due-time
#:post-object
#:target
#:due-p
#:post
#:title
#:header
#:footer
#:description
#:content-warning
#:tags
#:compose-post
#:image-post
#:files
#:file-descriptions
#:video-post
#:file
#:link-post
#:url
#:text-post
#:markup
#:convert-markup
#:client
#:name
#:post-tags
#:define-client
#:result
#:client
#:post-object
#:url
#:profile
#:name
#:clients
#:tags
#:header
#:footer
#:multiposter
#:schedules
#:default-profile)
;; config.lisp
(:export
#:config-file
#:load-config
#:save-config)
;; toolkit.lisp
(:export
#:*image-types*
#:*video-types*
#:or*
#:file-type-p
#:envvar
#:parse-tags
#:merge-paragraphs
#:initargs
#:make-like
#:alphanumeric-p
#:non-space-p
#:non-comma-p
#:filter-tags
#:trim-text
#:compose-post-text
#:query
#:verbose
#:timestamp
#:path-url)
;; clients
(:export
#:cohost
#:dummy
#:file
#:git
#:lichat
#:mastodon
#:reader
#:studio
#:tumblr
#:webdav))