;; SPDX-License-Identifier: EUPL-1.2 ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs (defpackage :ukkoclot/src/tg/chat-type (:documentation "ChatType Telegram type.") (:use :c2cl :ukkoclot/src/enum) (:export :channel :chat-type :group :private :supergroup)) (in-package :ukkoclot/src/tg/chat-type) (define-enum chat-type (private "private") (group "group") (supergroup "supergroup") (channel "channel"))