Refactor to work with quicklisp.
This commit is contained in:
1
README.txt
Normal file
1
README.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
This is the stub README.txt for the "cl-sendgrid" project.
|
||||||
@@ -1,9 +1,13 @@
|
|||||||
(defpackage :cl-sendgrid-system (:use :asdf :cl))
|
;;;; cl-sendgrid.asd
|
||||||
|
|
||||||
(in-package :cl-sendgrid-system)
|
(asdf:defsystem #:cl-sendgrid
|
||||||
|
:serial t
|
||||||
|
:description "Describe cl-sendgrid here"
|
||||||
|
:author "Your Name <your.name@example.com>"
|
||||||
|
:license "Specify license here"
|
||||||
|
:depends-on (#:drakma
|
||||||
|
#:yason
|
||||||
|
#:flexi-streams)
|
||||||
|
:components ((:file "package")
|
||||||
|
(:file "cl-sendgrid")))
|
||||||
|
|
||||||
(defsystem :cl-sendgrid
|
|
||||||
:version "0.1"
|
|
||||||
:depends-on (drakma yason flexi-streams)
|
|
||||||
:components ((:file "packages")
|
|
||||||
(:file "cl-sendgrid" :depends-on ("packages"))))
|
|
||||||
|
|||||||
6
package.lisp
Normal file
6
package.lisp
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
(require 'drakma) (require 'yason) (require 'flexi-streams)
|
||||||
|
|
||||||
|
(defpackage #:cl-sendgrid
|
||||||
|
(:use #:cl #:drakma #:yason)
|
||||||
|
(:export #:send-email #:sendgrid-error #:sendgrid-error-message))
|
||||||
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
(in-package :cl-user)
|
|
||||||
|
|
||||||
(defpackage #:cl-sendgrid
|
|
||||||
(:use :cl :drakma :yason)
|
|
||||||
(:export #:send-email #:sendgrid-error))
|
|
||||||
Reference in New Issue
Block a user