src/package.lisp @ 8e500ea0d9ff

Add :allow-print and :allow-read

These can be useful to restrict reading/printing to make sure
you don't accidentally serialize the wrong thing and send an
internal data structure out over the wire.
author Steve Losh <steve@stevelosh.com>
date Tue, 18 Aug 2020 21:50:45 -0400
parents 4c59ba2362d8
children 6c1bac83e3c9
(defpackage :jarl
  (:use :cl)
  (:shadow :read :print)
  (:export
    :read :print

    :json-parsing-error :line :column

    :json-class

    ))