forked from thephoeron/LLTHW
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.lisp
More file actions
29 lines (24 loc) · 757 Bytes
/
packages.lisp
File metadata and controls
29 lines (24 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: LLTHW; Base: 10 -*-
;;;; file: packages.lisp
;;;; Copyright (c) 2012--2015 "the Phoeron" Colin J.E. Lupton <//thephoeron.com>
;;;; See LICENSE for additional information.
(in-package :cl-user)
(defpackage #:llthw
(:use :cl
:cl-who
:cl-css
:parenscript
:split-sequence
:3bmd
:3bmd-code-blocks
:3bmd-definition-lists
:3bmd-tables
:hunchentoot)
(:shadowing-import-from #:parenscript #:%)
(:export #:*llthw-version*
#:llthw-start
#:llthw-stop
#:llthw-restart))
;; see asdf system definition
(defparameter llthw:*llthw-version* #.llthw-asd::*llthw-version*)
;; EOF