Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
RTAkland committed Dec 14, 2024
1 parent f811b37 commit f60eb03
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ allprojects {
repositories {
mavenCentral()
maven("https://jitpack.io")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}

tasks.compileKotlin {
Expand Down
2 changes: 2 additions & 0 deletions ronebot-onebot-v11/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dependencies {
api(libs.java.websocket)
api("org.incendo:cloud-kotlin-coroutines:2.0.0")
api("org.incendo:cloud-core:2.0.0")
api(project(":ronebot-common"))
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/12/14
*/


package cn.rtast.rob.util

import kotlinx.coroutines.Dispatchers
import org.incendo.cloud.CommandManager
import org.incendo.cloud.execution.ExecutionCoordinator
import org.incendo.cloud.internal.CommandRegistrationHandler
import org.incendo.cloud.kotlin.coroutines.SuspendingExecutionHandler
import kotlin.coroutines.CoroutineContext

class CloudCommandManager {
}

fun main() {
}

0 comments on commit f60eb03

Please sign in to comment.