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