File tree Expand file tree Collapse file tree 7 files changed +595
-260
lines changed
Expand file tree Collapse file tree 7 files changed +595
-260
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ buildscript {
1111plugins {
1212 id " org.jetbrains.kotlin.multiplatform"
1313 id " org.jetbrains.kotlin.plugin.serialization"
14+
15+ id " org.jetbrains.kotlin.plugin.compose" version " $kotlin_version "
16+ id " org.jetbrains.compose" version " $compose_version "
1417}
1518
1619apply plugin : ' application'
@@ -27,12 +30,15 @@ kotlin {
2730 dependencies {
2831 implementation kotlin(' stdlib' )
2932 implementation " org.jetbrains.kotlinx:kotlinx-serialization-json:$serialization_version "
33+ implementation " dev.inmo:tgbotapi.core:$telegram_bot_api_version "
34+ implementation compose. runtime
3035 }
3136 }
3237
3338 jsMain {
3439 dependencies {
3540 implementation " dev.inmo:tgbotapi.webapps:$telegram_bot_api_version "
41+ implementation compose. web. core
3642 }
3743 }
3844
@@ -41,6 +47,7 @@ kotlin {
4147 implementation " dev.inmo:tgbotapi:$telegram_bot_api_version "
4248 implementation " dev.inmo:micro_utils.ktor.server:$micro_utils_version "
4349 implementation " io.ktor:ktor-server-cio:$ktor_version "
50+ implementation compose. desktop. currentOs
4451 }
4552 }
4653 }
Original file line number Diff line number Diff line change 1+ import dev.inmo.tgbotapi.types.CustomEmojiId
2+
3+ val CustomEmojiIdToSet = CustomEmojiId (" 5424939566278649034" )
You can’t perform that action at this time.
0 commit comments