mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
9 lines
347 B
Go
9 lines
347 B
Go
package entity
|
|
|
|
// IPCMessage defines the structure for messages exchanged between parent and child processes
|
|
type IPCMessage struct {
|
|
Type string `json:"type"` // message type identifier
|
|
Payload interface{} `json:"payload"` // message content
|
|
IPC bool `json:"ipc"` // Add this field to explicitly mark IPC messages
|
|
}
|