feat: replace new hitokoto api

This commit is contained in:
2024-09-21 22:38:15 +08:00
parent 5c108d0f0c
commit c3dd7a3e0b
1 file changed
+17
@@ -0,0 +1,17 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/21
*/
package cn.rtast.fancybot.entity
import com.google.gson.annotations.SerializedName
data class Hitokoto(
val uuid: String,
@SerializedName("hitokoto")
val sentence: String,
val from: String
)