mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 16:10:59 +08:00
13 lines
199 B
Go
13 lines
199 B
Go
package models
|
|
|
|
import (
|
|
"panel/packages/helpers"
|
|
|
|
"github.com/goravel/framework/database/orm"
|
|
)
|
|
|
|
type Monitor struct {
|
|
orm.Model
|
|
Info helpers.MonitoringInfo `gorm:"type:json;serializer:json"`
|
|
}
|