summaryrefslogtreecommitdiff
path: root/src/tg-types/web-app-info.lisp
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-10 12:30:46 +0300
committerGravatar Uko Kokņevičs2025-10-10 12:30:46 +0300
commitb4c1f66e1631f40d8a7d0f80523470677a91381f (patch)
treeef3aa478cfca05dc27e0777f9c42813d4268e54a /src/tg-types/web-app-info.lisp
parentAdd a helper reply-message function (diff)
downloadukkoclot-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.lisp14
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))