graphvent/message.go

12 lines
132 B
Go

package graphvent
2024-03-04 17:30:42 -07:00
type SendMsg struct {
Dest NodeID
Signal Signal
}
2024-03-04 17:30:42 -07:00
type RecvMsg struct {
Source NodeID
Signal Signal
}