mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-29 02:31:17 +00:00
8 lines
176 B
Go
8 lines
176 B
Go
package models
|
|
|
|
type Healthcheck struct {
|
|
ID uint `gorm:"primary_key"`
|
|
Name string
|
|
Status string // UP, DOWN
|
|
UptimePercentage float64
|
|
}
|