blob: 33145bab2b50734798ac7230c666205e45a34495 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(declaim (optimize (speed 0) (safety 3) (debug 3)))
(in-package :resume)
(defgeneric get-site-file-path (webapp)
(:documentation "Builds a full filesystem path to a webapp's site
file."))
(defgeneric get-pages-file-paths (webapp)
(:documentation ""))
|