Initial commit

This commit is contained in:
2022-03-28 13:28:06 +08:00
commit b9268d7b90
11 changed files with 500 additions and 0 deletions

15
build.gradle.kts Normal file
View File

@@ -0,0 +1,15 @@
plugins {
val kotlinVersion = "1.6.10"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "+"
}
group = "top.jie65535"
version = "1.0"
repositories {
maven("https://maven.aliyun.com/repository/public")
mavenCentral()
}