LoginSystem/settings.gradle.kts
2024-07-10 18:52:31 +08:00

10 lines
215 B
Plaintext

rootProject.name = "authme"
applyAll("project")
applyAll("plugin")
fun applyAll(name: String) {
File(rootDir, name).listFiles()?.filter { it.isDirectory }?.forEach {
include("$name:${it.name}")
}
}