-
Notifications
You must be signed in to change notification settings - Fork 0
/
stripe.asd
42 lines (42 loc) · 1.01 KB
/
stripe.asd
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
(asdf:defsystem #:stripe
:description "A client for the Stripe payment API."
:author ("Michael Fiano <[email protected]>")
:maintainer "Atlas Engineer LLC"
:license "MIT"
:homepage "https://github.com/atlas-engineer/stripe"
:encoding :utf-8
:depends-on (#:dexador
#:golden-utils
#:local-time
#:yason)
:pathname "src"
:serial t
:components
((:file "package")
(:file "common")
(:file "error")
(:file "object")
(:file "query")
(:file "balance")
(:file "balance-transaction")
(:file "card")
(:file "charge")
(:file "coupon")
(:file "credit-note")
(:file "customer")
(:file "customer-balance-transaction")
(:file "customer-tax-id")
(:file "discount")
(:file "invoice")
(:file "invoice-item")
(:file "order")
(:file "payout")
(:file "plan")
(:file "product")
(:file "refund")
(:file "return")
(:file "session")
(:file "sku")
(:file "subscription")
(:file "subscription-item")
(:file "token")))