Set up project structure

This commit is contained in:
2025-09-08 16:00:28 +02:00
commit cfc04d963f
14 changed files with 652 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package ltd.lulz.plugin
import org.gradle.api.Plugin
import org.gradle.api.Project
@Suppress("unused")
class CorePlugin : Plugin<Project> {
/**
* Register Extensions and Tasks.
*/
override fun apply(
project: Project,
) {
TODO("Not yet implemented")
}
}