mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
16 lines
398 B
Go
16 lines
398 B
Go
package model
|
|
|
|
type SystemInfo struct {
|
|
ARCH string `json:"arch"`
|
|
OS string `json:"os"`
|
|
Hostname string `json:"host_name"`
|
|
NumCpu int `json:"num_cpu"`
|
|
Executables []Executable `json:"executables"`
|
|
}
|
|
|
|
type Executable struct {
|
|
Path string `json:"path"`
|
|
FileName string `json:"file_name"`
|
|
DisplayName string `json:"display_name"`
|
|
}
|