Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

12 wiersze
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. }