mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-20 15:24:23 +01:00
13 lines
238 B
Go
13 lines
238 B
Go
package lnd
|
|
|
|
type CopyFromSource interface {
|
|
Next() bool
|
|
Values() ([]interface{}, error)
|
|
Err() error
|
|
}
|
|
|
|
type ForwardingEventStore interface {
|
|
LastForwardingEvent() (int64, error)
|
|
InsertForwardingEvents(rowSrc CopyFromSource) error
|
|
}
|