feat: add tts command

This commit is contained in:
2024-10-07 16:07:07 +08:00
parent 35fd368cb6
commit 69743ca42b
4 files changed
+73 -2

No files matched your search

@@ -0,0 +1,15 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/10/7
*/
package cn.rtast.fancybot.entity.tts
import com.google.gson.annotations.SerializedName
data class TTSResponse(
@SerializedName("URL")
val url: String
)