diff options
| author | 2025-10-13 00:05:43 +0300 | |
|---|---|---|
| committer | 2025-10-13 00:05:43 +0300 | |
| commit | 5a941f218b918ca3b301d661942f0911c5153a12 (patch) | |
| tree | 2846be6d3428342d1a1f9f1cd7bc5058a4d4fe1a /src/tg/bot-name.lisp | |
| parent | Some more TG types (diff) | |
| download | ukkoclot-5a941f218b918ca3b301d661942f0911c5153a12.tar.gz ukkoclot-5a941f218b918ca3b301d661942f0911c5153a12.tar.xz ukkoclot-5a941f218b918ca3b301d661942f0911c5153a12.zip | |
Rename tg-types to just tg
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)) | ||