mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
17 lines
307 B
Common Lisp
17 lines
307 B
Common Lisp
;;; keep sorted to recognize eventual name clashes
|
|
|
|
(defpackage ui
|
|
(:use :cl)
|
|
(:export
|
|
#:*busy*
|
|
#:*loading*
|
|
#:*messages*
|
|
#:*view*))
|
|
|
|
(in-package :ui)
|
|
|
|
(defparameter *busy* "busy")
|
|
(defparameter *loading* "loading")
|
|
(defparameter *messages* "messages")
|
|
(defparameter *view* "view")
|
|
|