Boticord Kotlin API wrapper
Введение в документацию по библиотеке botikotlin
boticord("YOUR_BOTICORD_TOKEN_HERE") {
notifications { event ->
logger.info("Received event: $event")
}
}.await()val client = BotiCordClient("TOKEN")
client.notifications { event ->
logger.info("Received event: $event")
}.await()Last updated