Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Latest commit

 

History

History
29 lines (19 loc) · 768 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 768 Bytes

Lucerne: a web framework

Build Status Coverage Status Quicklisp

Read the docs.

Usage

(defapp app)

@route app "/"
(defview index ()
  (respond "<h1>Welcome to Lucerne</h1>"))

@route app "/greet/:name"
(defview greet (name)
  (respond (format nil "Hello, ~A!" name)))

(start app)

License

Copyright (c) 2014-2018 Fernando Borretti (eudoxiahp@gmail.com)

Licensed under the MIT License.