Initial: initial commit

This commit is contained in:
kr328
2021-05-15 00:51:08 +08:00
commit 07e8afa69a
483 changed files with 26328 additions and 0 deletions

16
build.gradle.kts Normal file
View File

@@ -0,0 +1,16 @@
@file:Suppress("UNUSED_VARIABLE")
allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri("https://maven.kr328.app")
}
}
}
task("clean", type = Delete::class) {
delete(rootProject.buildDir)
}