Files
oneuptime/InfrastructureAgent/model/server_process.go

8 lines
137 B
Go

package model
type ServerProcess struct {
Pid int32 `json:"pid"`
Name string `json:"name"`
Command string `json:"command"`
}