This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
forked from aconchillo/guile-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis.scm
63 lines (55 loc) · 2.15 KB
/
redis.scm
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
;;; (redis) --- Redis module for Guile.
;; Copyright (C) 2013 Aleix Conchillo Flaque <aconchillo@gmail.com>
;;
;; This file is part of guile-redis.
;;
;; guile-redis is free software; you can redistribute it and/or
;; modify it under the terms of the GNU Lesser General Public
;; License as published by the Free Software Foundation; either
;; version 3 of the License, or (at your option) any later version.
;;
;; guile-redis is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; Lesser General Public License for more details.
;;
;; You should have received a copy of the GNU Lesser General Public
;; License along with guile-redis; if not, write to the Free Software
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
;; 02110-1301 USA
;;; Commentary:
;; Redis module for Guile
;;; Code:
(define-module (redis)
#:use-module (redis main)
#:use-module (redis commands connection)
#:use-module (redis commands hashes)
#:use-module (redis commands keys)
#:use-module (redis commands lists)
#:use-module (redis commands publish)
#:use-module (redis commands scripting)
#:use-module (redis commands server)
#:use-module (redis commands sets)
#:use-module (redis commands sortedsets)
#:use-module (redis commands strings)
#:use-module (redis commands transactions))
(define-syntax re-export-modules
(syntax-rules ()
((_ (mod ...) ...)
(begin
(module-use! (module-public-interface (current-module))
(resolve-interface '(mod ...)))
...))))
(re-export-modules (redis main)
(redis commands connection)
(redis commands hashes)
(redis commands keys)
(redis commands lists)
(redis commands publish)
(redis commands scripting)
(redis commands server)
(redis commands sets)
(redis commands sortedsets)
(redis commands strings)
(redis commands transactions))
;;; (redis) ends here