aboutsummaryrefslogtreecommitdiff
path: root/package.lisp
blob: 68db4cf2488a1ad6a9e0ddd1ee4311e790b741ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(in-package #:cl-user)

(uiop:define-package #:nx-router
  (:use #:cl)
  (:nicknames #:router)
  (:import-from #:nyxt
                #:define-class
                #:user-class
                #:define-mode
                #:define-command-global
                #:current-buffer
                #:url
                #:buffer
                #:render-url
                #:list-of
                #:maybe)
  (:import-from #:serapeum
                #:->
                #:export-always)
  (:documentation "nx-router allows you to define composable and flexible routes for Nyxt."))