mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
423 B
15 lines
423 B
package model
|
|
|
|
type Clam struct {
|
|
BaseModel
|
|
|
|
Name string `gorm:"not null" json:"name"`
|
|
Status string `json:"status"`
|
|
Path string `gorm:"not null" json:"path"`
|
|
InfectedStrategy string `json:"infectedStrategy"`
|
|
InfectedDir string `json:"infectedDir"`
|
|
Spec string `json:"spec"`
|
|
EntryID int `json:"entryID"`
|
|
Description string `json:"description"`
|
|
}
|