Initial commit

This commit is contained in:
2022-04-15 17:25:52 +08:00
commit 6c890c4a85
18 changed files with 1203 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 "2.10.0"
}
group = "org.example"
version = "0.1.0"
repositories {
maven("https://maven.aliyun.com/repository/public") // 阿里云国内代理仓库
mavenCentral()
}