feat: add latest commmit info and add language name on github repo card

This commit is contained in:
2024-10-03 16:59:07 +08:00
parent a349687e4f
commit d7d7e237e6
4 files changed
+91 -1

No files matched your search

@@ -0,0 +1,23 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/10/3
*/
package cn.rtast.fancybot.entity.github
data class LatestCommit(
val sha: String,
val commit: Commit
) {
data class Commit(
val committer: Committer
)
data class Committer(
val email: String,
val name: String,
val date: String,
)
}