mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
15 lines
317 B
Go
15 lines
317 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type ReferrerStats struct {
|
|
URL string `db:"url"`
|
|
Visitors int64 `db:"visitors"`
|
|
Pageviews int64 `db:"pageviews"`
|
|
BounceRate float64 `db:"bounce_rate"`
|
|
AvgDuration float64 `db:"avg_duration"`
|
|
Date time.Time `db:"date" json:",omitempty"`
|
|
}
|