10 lines
233 B
Common Lisp
10 lines
233 B
Common Lisp
;;; cl-scopes/storage/tracking.lisp
|
|
|
|
;;;; A simple generic (SQL-based) storage for tracks, messages, and other stuff.
|
|
|
|
(in-package :scopes/storage)
|
|
|
|
(defclass track () (
|
|
(taskid :initarg :taskid)
|
|
(username :initarg :username)))
|
|
|