mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-19 14:54:22 +01:00
13 lines
190 B
Go
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
|
|
}
|