Browse Source

export define-constant macro in app-constants.

The main reason is so the constants defined in the status-codes
packages can use it. I've put the (HTTP) status codes in their own
package because they are a self-contained thing. I find it easier to
work with them this way.
stable
Craig Oates 2 years ago
parent
commit
bf8b79021e
  1. 3
      src/app-constants.lisp

3
src/app-constants.lisp

@ -1,6 +1,7 @@
(defpackage #:app-constants
(:use #:cl)
(:export #:+false+
(:export #:define-constant
#:+false+
#:+true+))
(in-package #:app-constants)

Loading…
Cancel
Save