跳到主要内容

Simple Robot 3

你是否仍保有梦想?

易于使用

挂起?异步?阻塞?随便你!

Copyright © 2022 JetBrains s.r.o. and the [Kotlin] logo are registered trademarks of JetBrains s.r.o.

基于 Kotlin

Kotlin 实现,提供全异步的API,并对 Java 友好。

组件协同

不同的组件之间可以更紧密的合作。
在不同的平台中也要卿卿我我!

suspend fun main() {
val application = createSimpleApplication {
installAll() // 注册当前环境下支持的组件和bot管理器
}

// 注册监听函数
application.eventListenerManager.listeners {
// 监听好友消息事件
FriendMessageEvent { event ->
event.reply("你也好")
} onMatch { textContent == "你好" }
}

// 注册bot
application.bots {
// 注册bot
register(
File("bots/foo.bot").toResource()
.toBotVerifyInfo(JsonBotVerifyInfoDecoder.create())
).start()
}

application.join()

}