From cfb760c3b2e3631904b0bc6c94eafa9fa92e714a Mon Sep 17 00:00:00 2001 From: dominik martinez Date: Sat, 1 Mar 2025 19:12:26 -0800 Subject: [PATCH] remove leftover file --- src/models.lisp | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 src/models.lisp diff --git a/src/models.lisp b/src/models.lisp deleted file mode 100644 index f8d4143..0000000 --- a/src/models.lisp +++ /dev/null @@ -1,9 +0,0 @@ -(in-package :cl-matrix) - -(defclass user () - ((id :col-type string :initarg :id :accessor id) - (password-hash :col-type string :initarg :password-hash :accessor password-hash)) - (:metaclass postmodern:dao-class) - (:keys id)) - -