Spaces:
Sleeping
Sleeping
File size: 167 Bytes
931bd01 |
1 2 3 4 5 6 7 8 9 10 11 |
package typings
type GenericResponseLine struct {
Line string `json:"line"`
Error string `json:"error"`
}
type StringStruct struct {
Text string `json:"text"`
}
|