Files
lspd/lightning/custom_msg_client.go
2023-11-06 14:11:28 +01:00

13 lines
190 B
Go

package lightning
type CustomMessage struct {
PeerId string
Type uint32
Data []byte
}
type CustomMsgClient interface {
Recv() (*CustomMessage, error)
Send(*CustomMessage) error
}