1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-29 04:47:48 +00:00

fix dokka

This commit is contained in:
InsanusMokrassar 2022-04-18 17:34:34 +06:00
parent dd7567f43c
commit a9cb07fa0d

View File

@ -40,11 +40,17 @@ kotlin {
dependencies { dependencies {
implementation kotlin('stdlib') implementation kotlin('stdlib')
rootProject.subprojects.forEach { api project(":tgbotapi.core")
if (it != project) { api project(":tgbotapi.api")
api it api project(":tgbotapi.utils")
} api project(":tgbotapi.behaviour_builder")
} api project(":tgbotapi.behaviour_builder.fsm")
api project(":tgbotapi")
}
}
jsMain {
dependencies {
api project(":tgbotapi.webapps")
} }
} }
} }