Add all packets handler

This commit is contained in:
2026-09-07 10:07:10 +08:00
parent d7300451f8
commit c0f9679090
25 files changed
+202 -105

No files matched your search

+14 -1
View File
@@ -22,11 +22,24 @@ kotlin {
commonTest.dependencies {
implementation(kotlin("test"))
implementation(project(":protocol-encrypt"))
implementation(libs.kotlinx.coroutines.test)
}
jvmTest.dependencies {
implementation(project(":protocol-encrypt"))
implementation(libs.ktor.client.okhttp)
}
linuxTest.dependencies {
implementation(libs.ktor.client.curl)
}
mingwTest.dependencies {
implementation(libs.ktor.client.winhttp)
}
appleTest.dependencies {
implementation(libs.ktor.client.darwin)
}
}
}