1
0
This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
chatgpt-to-api/typings/typings.go
2023-06-12 22:59:40 +08:00

11 lines
167 B
Go

package typings
type GenericResponseLine struct {
Line string `json:"line"`
Error string `json:"error"`
}
type StringStruct struct {
Text string `json:"text"`
}