Initial Commit

This commit is contained in:
2025-03-06 21:45:08 +01:00
commit 9ddc02ad79
25 changed files with 513 additions and 0 deletions

21
build.gradle.kts Normal file
View File

@ -0,0 +1,21 @@
plugins {
kotlin("jvm") version "2.1.10"
}
group = "de.chaoscaot"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}