Skip to content

Instantly share code, notes, and snippets.

@rainthree
rainthree / tmp.lisp
Last active December 31, 2022 19:01
stassats-storage simple working example https://github.com/stassats/storage
;;; stassats-storage simple working example https://www.cliki.net/stassats-storage
(uiop:define-package #:tmp
(:use :cl)
(:local-nicknames (:db :storage)))
(in-package #:tmp)
(defparameter *storage*
(make-instance 'db:storage :file "f.db"))