From 6b544b58dba095cafd6906d78b70bfd237397439 Mon Sep 17 00:00:00 2001 From: Uko Kokņevičs Date: Sun, 19 Oct 2025 11:12:24 +0300 Subject: Fix lint issues --- src/tg/message-entity-type.lisp | 47 ----------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 src/tg/message-entity-type.lisp (limited to 'src/tg/message-entity-type.lisp') diff --git a/src/tg/message-entity-type.lisp b/src/tg/message-entity-type.lisp deleted file mode 100644 index f964667..0000000 --- a/src/tg/message-entity-type.lisp +++ /dev/null @@ -1,47 +0,0 @@ -;; SPDX-License-Identifier: EUPL-1.2 -;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs -(defpackage :ukkoclot/src/tg/message-entity-type - (:use :c2cl :ukkoclot/src/enum) - (:export - :message-entity-type - :mention - :hashtag - :cashtag - :bot-command - :url-entity - :email - :phone-number - :bold - :italic - :underline - :strikethrough - :spoiler - :blockquote - :expandable-blockquote - :code - :pre - :text-link - :text-mention - :custom-emoji)) -(in-package :ukkoclot/src/tg/message-entity-type) - -(define-enum message-entity-type - (mention "mention") - (hashtag "hashtag") - (cashtag "cashtag") - (bot-command "bot_command") - (url-entity "url") - (email "email") - (phone-number "phone_number") - (bold "bold") - (italic "italic") - (underline "underline") - (strikethrough "strikethrough") - (spoiler "spoiler") - (blockquote "blockquote") - (expandable-blockquote "expandable_blockquote") - (code "code") - (pre "pre") - (text-link "text_link") - (text-mention "text_mention") - (custom-emoji "custom_emoji")) -- cgit v1.2.3