Initial commit

This commit is contained in:
Jannik Reimers 2025-04-03 08:40:35 +02:00 committed by GitHub
commit 8716669d29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
45 changed files with 2605 additions and 0 deletions

14
.idea/fileTemplates/KordEx Extension.kt generated Normal file
View file

@ -0,0 +1,14 @@
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
#end
import com.kotlindiscord.kord.extensions.extensions.Extension
#set($extName = $NAME.toLowerCase())
#parse("File Header.java")
class ${NAME}Extension : Extension() {
override val name = "$extName"
override suspend fun setup() {
TODO("Not yet implemented")
}
}