mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
12 lines
357 B
Go
12 lines
357 B
Go
|
package models
|
||
|
|
||
|
type Diagnostics struct {
|
||
|
ID uint `gorm:"primary_key"`
|
||
|
Platform string `json:"platform"`
|
||
|
Architecture string `json:"architecture"`
|
||
|
Plugin string `json:"plugin"`
|
||
|
CliVersion string `json:"cli_version"`
|
||
|
Logs string `json:"logs" gorm:"type:text"`
|
||
|
StackTrace string `json:"stacktrace" gorm:"type:text"`
|
||
|
}
|