blob: 0c7421cdd098e2c007aa4cf02193515a2ef3613b (
plain)
1
2
3
4
5
6
7
8
9
10
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)))
|