mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
17 lines
389 B
Go
17 lines
389 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type PageStats struct {
|
|
Pathname string `db:"pathname"`
|
|
Views int64 `db:"views"`
|
|
UniqueViews int64 `db:"unique_views"`
|
|
Bounced int64 `db:"bounced"`
|
|
BouncedN int64 `db:"bounced_n"`
|
|
AvgDuration int64 `db:"avg_duration"`
|
|
AvgDurationN int64 `db:"avg_duration_n"`
|
|
Date time.Time `db:"date"`
|
|
}
|