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.
 
 
 
 

9 lines
188 B

  1. package model
  2. type Alert struct {
  3. ID string `json:"id" gorm:"primaryKey"`
  4. TrackerID string `json:"tracker_id"`
  5. Type string `json:"type"`
  6. Value string `json:"value"`
  7. }