summaryrefslogtreecommitdiff
path: root/src/tg/web-app-info.lisp
blob: d255a69c6f1653a7e5c47203fd0d45448ae0eecd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;; SPDX-License-Identifier: EUPL-1.2
;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
(defpackage :ukkoclot/src/tg/web-app-info
  (:documentation "WebAppInfo Telegram type")
  (:use :c2cl :ukkoclot/src/tg/type-macros)
  (:export
   #:web-app-info
   #:make-web-app-info
   #:web-app-info-p
   #:copy-web-app-info
   #:web-app-info-url))
(in-package :ukkoclot/src/tg/web-app-info)

(define-tg-type web-app-info
  (url string))