zdravko/internal/models/models.go

16 lines
274 B
Go
Raw Normal View History

2024-02-11 10:56:21 +00:00
package models
2024-02-12 08:25:11 +00:00
import "time"
type OAuth2State struct {
State string `gorm:"primary_key"`
Expiry time.Time
}
2024-02-11 10:56:21 +00:00
type Healthcheck struct {
ID uint `gorm:"primary_key"`
Name string
Status string // UP, DOWN
UptimePercentage float64
}