mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
9 lines
205 B
Go
9 lines
205 B
Go
package models
|
|
|
|
type Count struct {
|
|
URL string `json:"url"`
|
|
Views int64 `json:"views"`
|
|
Uniques int64 `json:"uniques"`
|
|
PercentOfTotal float64 `json:"percent_of_total"`
|
|
}
|