Add parse mode for telegram send message

This commit is contained in:
Sambo Chea 2021-05-21 12:11:51 +07:00
parent 6f6c592169
commit 10b44e9a33

View File

@ -0,0 +1,6 @@
package com.cubetiqs.messaging.client.telegram
enum class TelegramParseMode (val mode: String) {
MARKDOWN("markdown"),
HTML("html");
}