package com.github.insanusmokrassar.TelegramBotAPI.types.MessageEntity.textsources import com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts.TextSource import com.github.insanusmokrassar.TelegramBotAPI.utils.* class TextLinkTextSource( source: String, url: String ) : TextSource { override val asMarkdownSource: String by lazy { source.linkMarkdown(url) } override val asMarkdownV2Source: String by lazy { source.linkMarkdownV2(url) } override val asHtmlSource: String by lazy { source.linkHTML(url) } }