diff options
| author | 2025-10-10 12:30:46 +0300 | |
|---|---|---|
| committer | 2025-10-10 12:30:46 +0300 | |
| commit | b4c1f66e1631f40d8a7d0f80523470677a91381f (patch) | |
| tree | ef3aa478cfca05dc27e0777f9c42813d4268e54a /src/tg-types/web-app-info.lisp | |
| parent | Add a helper reply-message function (diff) | |
| download | ukkoclot-b4c1f66e1631f40d8a7d0f80523470677a91381f.tar.gz ukkoclot-b4c1f66e1631f40d8a7d0f80523470677a91381f.tar.xz ukkoclot-b4c1f66e1631f40d8a7d0f80523470677a91381f.zip | |
Bunch of changes
- Animations
- Rewrite of serialization deserialization
- Bunch of new TG types
Diffstat (limited to 'src/tg-types/web-app-info.lisp')
| -rw-r--r-- | src/tg-types/web-app-info.lisp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/tg-types/web-app-info.lisp b/src/tg-types/web-app-info.lisp new file mode 100644 index 0000000..e239830 --- /dev/null +++ b/src/tg-types/web-app-info.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-types/web-app-info | ||
| 4 | (:use :c2cl :ukkoclot/tg-types/macros) | ||
| 5 | (:export | ||
| 6 | #:web-app-info | ||
| 7 | #:make-web-app-info | ||
| 8 | #:web-app-info-p | ||
| 9 | #:copy-web-app-info | ||
| 10 | #:web-app-info-url)) | ||
| 11 | (in-package :ukkoclot/tg-types/web-app-info) | ||
| 12 | |||
| 13 | (define-tg-type web-app-info | ||
| 14 | (url string)) | ||