mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-26 17:27:59 +00:00
15 lines
274 B
Go
15 lines
274 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type OAuth2State struct {
|
|
State string `gorm:"primary_key"`
|
|
Expiry time.Time
|
|
}
|
|
|
|
type Healthcheck struct {
|
|
ID uint `gorm:"primary_key"`
|
|
Name string
|
|
Status string // UP, DOWN
|
|
UptimePercentage float64
|
|
}
|