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

11 lines
167 B
Go
Raw Normal View History

2023-06-09 19:30:45 +00:00
package typings
type GenericResponseLine struct {
Line string `json:"line"`
Error string `json:"error"`
}
2023-06-12 14:59:40 +00:00
type StringStruct struct {
Text string `json:"text"`
}