summaryrefslogtreecommitdiff
path: root/lisp/sql/general-pkg.lisp
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-07-18 21:18:18 -0600
committerckonstanski <kostcarl@isu.edu>2026-07-18 21:18:18 -0600
commit08e435104c42751689553537b1f20ffb14b8dfcc (patch)
treef83d8db1a02d4be448ab044d28fda7411470bd7c /lisp/sql/general-pkg.lisp
initial commit
Diffstat (limited to 'lisp/sql/general-pkg.lisp')
-rw-r--r--lisp/sql/general-pkg.lisp11
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/sql/general-pkg.lisp b/lisp/sql/general-pkg.lisp
new file mode 100644
index 0000000..0c7421c
--- /dev/null
+++ b/lisp/sql/general-pkg.lisp
@@ -0,0 +1,11 @@
+;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+(declaim (optimize (speed 0) (safety 3) (debug 3)))
+
+(in-package :resume)
+
+(defclass general-pkg (record-pkg)
+ ()
+ (:documentation ""))
+
+(defmethod get-about-us ((general-pkg general-pkg) category)
+ (get-record general-pkg (make-instance 'about-us :category category)))