useKook 
  fun ApplicationFactoryConfigurer<*, *, *>.useKook(usageBuilder: KookComponentUsageBuilder.() -> Unit = {})(source)
通过 KookComponentUsageBuilder 来同时配置使用 KOOK组件 和 KookBotManager。
usage:
simbotApplication(Foo) {
   useKook()
   // 或:
   useKook {
       // 配置组件
       component {
           // ...
       }
       // 配置botManager
       botManager {
           // ...
       }
   }
}Content copied to clipboard
相当于:
simbotApplication(Foo) {
   install(KookComponent) {
       // ...
   }
   install(KookBotManager) {
       // ...
   }
}Content copied to clipboard