awful: reference to possibly unbound identifier `match-matcher' added by mario-goulart on Fri Nov 16 12:31:00 2012

(module app (app)

(import chicken scheme)
(use awful)

(define (app base-path)

  (define-app app
    matcher: base-path
    parameters: ((enable-sxml #t))

  (define-page "/"
    (lambda ()
      "the app")))

))