mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
8 lines
180 B
Go
8 lines
180 B
Go
package entity
|
|
|
|
type StatsDailyItem struct {
|
|
Date string `json:"date" bson:"_id"`
|
|
Tasks int64 `json:"tasks" bson:"tasks"`
|
|
Results int64 `json:"results" bson:"results"`
|
|
}
|