summaryrefslogtreecommitdiff
path: root/src/tg/get-my-name.lisp
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-13 06:32:57 +0300
committerGravatar Uko Kokņevičs2025-10-13 06:32:57 +0300
commit9e424b351da370630924e32d0a84eba6fdb8c05e (patch)
tree60999a1b91e73c8aa74e43085e3c0be39d5ec8cf /src/tg/get-my-name.lisp
parentImprove define-tg-method (diff)
downloadukkoclot-9e424b351da370630924e32d0a84eba6fdb8c05e.tar.gz
ukkoclot-9e424b351da370630924e32d0a84eba6fdb8c05e.tar.xz
ukkoclot-9e424b351da370630924e32d0a84eba6fdb8c05e.zip
Move bot/methods to tg/*
Diffstat (limited to 'src/tg/get-my-name.lisp')
-rw-r--r--src/tg/get-my-name.lisp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tg/get-my-name.lisp b/src/tg/get-my-name.lisp
new file mode 100644
index 0000000..59bb753
--- /dev/null
+++ b/src/tg/get-my-name.lisp
@@ -0,0 +1,9 @@
1;; SPDX-License-Identifier: EUPL-1.2
2;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
3(defpackage :ukkoclot/tg/get-my-name
4 (:use :c2cl :ukkoclot/tg/bot-name :ukkoclot/bot/method-macros)
5 (:export :get-my-name))
6(in-package :ukkoclot/tg/get-my-name)
7
8(define-tg-method (get-my-name bot-name :GET)
9 (language-code (or string null) nil))