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.
|
- 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"`
- }
|