Initial commit

This commit is contained in:
2022-02-08 21:51:36 +08:00
commit 39809c7b03
16 changed files with 686 additions and 0 deletions

15
build.gradle.kts Normal file
View File

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