mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 14:57:16 +08:00
13 lines
222 B
Go
13 lines
222 B
Go
package models
|
|
|
|
import (
|
|
"github.com/goravel/framework/database/orm"
|
|
|
|
"github.com/TheTNB/panel/v2/pkg/tools"
|
|
)
|
|
|
|
type Monitor struct {
|
|
orm.Model
|
|
Info tools.MonitoringInfo `gorm:"not null;serializer:json" json:"info"`
|
|
}
|