Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

9 righe
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. }