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