You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
256 B

  1. package model
  2. import "time"
  3. type Alert struct {
  4. ID string `json:"id" gorm:"primaryKey"`
  5. TrackerID string `json:"tracker_id"`
  6. Type string `json:"type"`
  7. Status string `json:"status"`
  8. Timestamp time.Time `json:"timestamp"`
  9. }