diff options
Diffstat (limited to 'src/tg/reaction-type-custom-emoji.lisp')
| -rw-r--r-- | src/tg/reaction-type-custom-emoji.lisp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tg/reaction-type-custom-emoji.lisp b/src/tg/reaction-type-custom-emoji.lisp new file mode 100644 index 0000000..9191f1e --- /dev/null +++ b/src/tg/reaction-type-custom-emoji.lisp | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | ;; SPDX-License-Identifier: EUPL-1.2 | ||
| 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> | ||
| 3 | (defpackage :ukkoclot/tg/reaction-type-custom-emoji | ||
| 4 | (:use :c2cl :ukkoclot/enum :ukkoclot/tg/macros) | ||
| 5 | (:export | ||
| 6 | #:custom-emoji-type | ||
| 7 | #:reaction-type-custom-emoji-type | ||
| 8 | #:reaction-type-custom-emoji | ||
| 9 | #:make-reaction-type-custom-emoji | ||
| 10 | #:reaction-type-custom-emoji-p | ||
| 11 | #:copy-reaction-type-custom-emoji | ||
| 12 | #:reaction-type-custom-emoji-custom-emoji-id)) | ||
| 13 | (in-package :ukkoclot/tg/reaction-type-custom-emoji) | ||
| 14 | |||
| 15 | (define-enum reaction-type-custom-emoji-type | ||
| 16 | (custom-emoji-type "custom_emoji")) | ||
| 17 | |||
| 18 | (define-tg-type reaction-type-custom-emoji | ||
| 19 | (type reaction-type-custom-emoji-type) | ||
| 20 | (custom-emoji-id string)) | ||