zdravko/internal/models/models.go

9 lines
176 B
Go
Raw Normal View History

2024-02-11 10:56:21 +00:00
package models
type Healthcheck struct {
ID uint `gorm:"primary_key"`
Name string
Status string // UP, DOWN
UptimePercentage float64
}