mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
8 lines
137 B
Go
8 lines
137 B
Go
package model
|
|
|
|
type ServerProcess struct {
|
|
Pid int32 `json:"pid"`
|
|
Name string `json:"name"`
|
|
Command string `json:"command"`
|
|
}
|