diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-02-03 14:39:39 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-02-03 14:39:39 -0300 |
commit | fdeb8e5de32f21a4a016b99165d248a7d8c3abde (patch) | |
tree | a98a034636d7188dfd0b8c3acde2ff69dfdc5af9 /package.lisp | |
parent | e858144ddf1e50b3a390d33961945a9063d746f0 (diff) | |
download | json-fdeb8e5de32f21a4a016b99165d248a7d8c3abde.tar.gz json-fdeb8e5de32f21a4a016b99165d248a7d8c3abde.zip |
Change api and add object generation
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package.lisp b/package.lisp index 2c7c3a7..d4024f8 100644 --- a/package.lisp +++ b/package.lisp @@ -1,6 +1,7 @@ (defpackage #:json (:use #:cl #:parser) - (:export #:parse-string - #:parse-file + (:export #:from-string + #:from-file #:to-string - #:to-file)) + #:to-file + #:obj)) |