summaryrefslogtreecommitdiff
path: root/src/tg/bot-name.lisp
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-13 00:05:43 +0300
committerGravatar Uko Kokņevičs2025-10-13 00:05:43 +0300
commit5a941f218b918ca3b301d661942f0911c5153a12 (patch)
tree2846be6d3428342d1a1f9f1cd7bc5058a4d4fe1a /src/tg/bot-name.lisp
parentSome more TG types (diff)
downloadukkoclot-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.lisp14
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))