- package models
- import "time"
- type VisitorSession struct {
- ID string `json:"id"`
- UserID *string `json:"user_id,omitempty"`
- Lat float64 `json:"lat"`
- Lng float64 `json:"lng"`
- LastActiveAt time.Time `json:"last_active_at"`
- CreatedAt time.Time `json:"created_at"`
- }
|