Files
exchange_go/models/commondto/websocket.go
2025-02-06 11:14:33 +08:00

10 lines
190 B
Go

package commondto
import "time"
type WebSocketErr struct {
Count int `json:"count"`
ErrorMessage string `json:"message"`
Time time.Time `json:"time"`
}