Add microcms and local-time
This commit is contained in:
parent
8d209a1bb4
commit
412a8adbe0
4 changed files with 30 additions and 1 deletions
src/lib
15
src/lib/cms.lisp
Normal file
15
src/lib/cms.lisp
Normal file
|
@ -0,0 +1,15 @@
|
|||
(defpackage #:hp/lib/cms
|
||||
(:use #:cl)
|
||||
(:import-from #:microcms
|
||||
#:define-list-client)
|
||||
(:import-from #:hp/env
|
||||
#:microcms-service-domain
|
||||
#:microcms-api-key)
|
||||
(:export #:get-blog-list
|
||||
#:get-blog-detail))
|
||||
(in-package :hp/lib/cms)
|
||||
|
||||
(setf microcms:*service-domain* (microcms-service-domain))
|
||||
(setf microcms:*api-key* (microcms-api-key))
|
||||
|
||||
(define-list-client blog)
|
Loading…
Add table
Add a link
Reference in a new issue