Initial commit

This commit is contained in:
2022-01-10 17:12:26 +08:00
commit 9056df5f23
18 changed files with 1212 additions and 0 deletions

16
build.gradle.kts Normal file
View File

@@ -0,0 +1,16 @@
plugins {
val kotlinVersion = "1.4.30"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("net.mamoe.mirai-console") version "2.6.6"
}
group = "org.example"
version = "0.1.0"
repositories {
mavenLocal()
maven("https://maven.aliyun.com/repository/public") // 阿里云国内代理仓库
mavenCentral()
}