Initial commit

This commit is contained in:
2026-08-06 01:03:27 +01:00
commit aa74300efb
20 changed files with 685 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import org.gradle.kotlin.dsl.provideDelegate
plugins {
kotlin("jvm") version "2.4.0"
}
group = "com.shr4pnel"
version = "1.0-SNAPSHOT"
val ktor_version = "3.5.2"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation ("io.ktor:ktor-client-core:${ktor_version}")
implementation("io.ktor:ktor-client-cio:${ktor_version}")
implementation("io.ktor:ktor-network:${ktor_version}")
implementation("io.ktor:ktor-network-tls:${ktor_version}")
}
kotlin {
jvmToolchain(23)
}
tasks.test {
useJUnitPlatform()
}