mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono.git
synced 2024-11-22 03:04:54 +08:00
Eyre_S
66866572c0
- ./data/tracker/<chatid>/<userid>/<unixdaystamp>.txt - 每行一个发言时的timestamp - 0/0/currentTime 用于记录tracker的在线状态
24 lines
340 B
Groovy
24 lines
340 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'cc.sukazyo'
|
|
version '0.2.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.github.pengrad:java-telegram-bot-api:5.3.0'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|