delete basically everything lol

This commit is contained in:
mae
2025-09-26 23:54:03 -05:00
parent bc08a46f28
commit b57edb8d3a
34 changed files with 157 additions and 1011 deletions

21
build.gradle.kts Normal file
View File

@@ -0,0 +1,21 @@
plugins {
kotlin("jvm") version "2.2.10"
}
group = "moe.rosa"
version = "0.1.0"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(24)
}