feat: add latest commmit info and add language name on github repo card
This commit is contained in:
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,
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user