feat(Scout): init

This commit is contained in:
LavaDesu 2025-05-29 03:12:05 +10:00
commit 9226686948
Signed by: cilly
GPG key ID: 6500251E087653C9
24 changed files with 1224 additions and 0 deletions

14
settings.gradle.kts Normal file
View file

@ -0,0 +1,14 @@
rootProject.name = "Awoocord"
// This file sets what projects are included. Every time you add a new project, you must add it
// to the includes below.
// Plugins are included like this
include(
"Scout"
)
rootProject.children.forEach {
// Change kotlin to java if you'd rather use java
it.projectDir = file("plugins/${it.name}")
}