diff options
Diffstat (limited to 'src/tg-types/callback-query.lisp')
| -rw-r--r-- | src/tg-types/callback-query.lisp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/tg-types/callback-query.lisp b/src/tg-types/callback-query.lisp deleted file mode 100644 index 875ff25..0000000 --- a/src/tg-types/callback-query.lisp +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | ;; SPDX-License-Identifier: EUPL-1.2 | ||
| 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> | ||
| 3 | (defpackage :ukkoclot/tg-types/callback-query | ||
| 4 | (:use :c2cl :ukkoclot/tg-types/macros) | ||
| 5 | (:use | ||
| 6 | :ukkoclot/tg-types/message | ||
| 7 | :ukkoclot/tg-types/user) | ||
| 8 | (:export | ||
| 9 | #:callback-query | ||
| 10 | #:make-callback-query | ||
| 11 | #:callback-query-p | ||
| 12 | #:copy-callback-query | ||
| 13 | #:callback-query-id | ||
| 14 | #:callback-query-from | ||
| 15 | #:callback-query-message | ||
| 16 | #:callback-query-inline-message-id | ||
| 17 | #:callback-query-chat-instance | ||
| 18 | #:callback-query-data | ||
| 19 | #:callback-query-game-short-name)) | ||
| 20 | (in-package :ukkoclot/tg-types/callback-query) | ||
| 21 | |||
| 22 | (define-tg-type callback-query | ||
| 23 | (id string) | ||
| 24 | (from user) | ||
| 25 | (message (or message null) nil) | ||
| 26 | (inline-message-id (or string null) nil) | ||
| 27 | (chat-instance string) | ||
| 28 | (data (or string null) nil) | ||
| 29 | (game-short-name (or string null) nil)) | ||