10 lines
190 B
Go
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"`
|
|
}
|