-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.lisp
67 lines (62 loc) · 1.87 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
;;; -*- Package: cl-user; -*-
;;; This file defines the packages for the common-lisp
;;; interface to the Dydra storage service
;;;
;;; Copyright 2011 [Datagraph Inc.](mailto:[email protected]) All Rights Reserved
;;;
(in-package :cl-user)
(defpackage :dydra
(:use)
(:nicknames :org.datagraph.dydra)
(:intern :repository-clear
:repository-create
:repository-count
:repository-delete
:repository-import
:repository-info
:repository-info-cache
:repository-query
:service-account-name
:service-info
:service-uri)
(:export :*blank-nodes*
:*repository*
:*repository-class*
:*service*
:*service-class*
:*uris*
:account-repositories
:authenticate
:clear
:count
:create
:delete
:import
:import-status
:info
:json-error
:json-rpc-ervice
:json-rest-service
:map-query
:query
:query-values
:repositories
:repository
:repository-account-name
:repository-id
:repository-name
:repository-service
:rest-service
:rpc-service
:service
:xml-rpc-service)
(:documentation "This is the home package for interface symbols for
the Dydra storage service library. The exported symbols constitute the
primary interface. in addition some lower level operator names are
included, but unexported, in case it should be necessary to specialize
interface objects."))
(defpackage :org.datagraph.dydra.implementation
(:nicknames :dydra.i)
(:use :common-lisp)
(:documentation "This is the home package for the implementation of
the Dydra storage service library."))