feat: add github user query command

This commit is contained in:
2024-09-15 22:11:55 +08:00
parent 89966875d3
commit 4512fdb107
3 files changed
+113 -1

No files matched your search

@@ -0,0 +1,22 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/15
*/
package cn.rtast.fancybot.entity.github
import com.google.gson.annotations.SerializedName
data class UserInfo(
val login: String,
@SerializedName("avatar_url")
val avatarUrl: String,
val company: String?,
val email: String?,
val bio: String?,
val followers: Int,
val following: Int,
val location: String?,
)