diff options
Diffstat (limited to 'src/tg/bot-name.lisp')
| -rw-r--r-- | src/tg/bot-name.lisp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/tg/bot-name.lisp b/src/tg/bot-name.lisp new file mode 100644 index 0000000..933ce8c --- /dev/null +++ b/src/tg/bot-name.lisp | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | ;; SPDX-License-Identifier: EUPL-1.2 | ||
| 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> | ||
| 3 | (defpackage :ukkoclot/tg/bot-name | ||
| 4 | (:use :c2cl :ukkoclot/tg/macros) | ||
| 5 | (:export | ||
| 6 | #:bot-name | ||
| 7 | #:make-bot-name | ||
| 8 | #:bot-name-p | ||
| 9 | #:copy-bot-name | ||
| 10 | #:bot-name-name)) | ||
| 11 | (in-package :ukkoclot/tg/bot-name) | ||
| 12 | |||
| 13 | (define-tg-type bot-name | ||
| 14 | (name string)) | ||