mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
18 lines
386 B
Common Lisp
18 lines
386 B
Common Lisp
(defpackage ui
|
|
(:use :cl)
|
|
(:export
|
|
#:*accuracy*
|
|
#:*animation*
|
|
#:*heart-rate*
|
|
#:*main*
|
|
#:*zoom-in*
|
|
#:*zoom-out*))
|
|
|
|
(in-package :ui)
|
|
|
|
(defparameter *animation* "animation")
|
|
(defparameter *accuracy* "accuracy")
|
|
(defparameter *heart-rate* "heart_rate")
|
|
(defparameter *main* "main")
|
|
(defparameter *zoom-in* "zoom_in")
|
|
(defparameter *zoom-out* "zoom_out")
|