From 9e424b351da370630924e32d0a84eba6fdb8c05e Mon Sep 17 00:00:00 2001 From: Uko Kokņevičs Date: Mon, 13 Oct 2025 06:32:57 +0300 Subject: Move bot/methods to tg/* --- src/tg/answer-callback-query.lisp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/tg/answer-callback-query.lisp (limited to 'src/tg/answer-callback-query.lisp') diff --git a/src/tg/answer-callback-query.lisp b/src/tg/answer-callback-query.lisp new file mode 100644 index 0000000..badd8a4 --- /dev/null +++ b/src/tg/answer-callback-query.lisp @@ -0,0 +1,13 @@ +;; SPDX-License-Identifier: EUPL-1.2 +;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs +(defpackage :ukkoclot/tg/answer-callback-query + (:use :c2cl :ukkoclot/bot/method-macros) + (:export :answer-callback-query)) +(in-package :ukkoclot/tg/answer-callback-query) + +(define-tg-method (answer-callback-query boolean) + (callback-query-id string) + (text (or string null) nil) + (show-alert boolean nil) + (url (or string null) nil) + (cache-time (or integer null) nil)) -- cgit v1.2.3