mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-30 15:38:49 +02:00
9 lines
119 B
Go
9 lines
119 B
Go
package shared
|
|
|
|
// Message send between guard processes
|
|
type Message struct {
|
|
UID string
|
|
PID int
|
|
Error string
|
|
}
|