package model import "time" type Alert struct { ID string `json:"id" gorm:"primaryKey"` TrackerID string `json:"tracker_id"` Type string `json:"type"` Status string `json:"status"` Timestamp time.Time `json:"timestamp"` }