blob: c986e5b5073ab25ddf5aea69ad4a3f2c97f5c3fa (
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 :bogenherr)
(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 ""))
|