mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-22 16:24:20 +01:00
8 lines
109 B
Go
8 lines
109 B
Go
package main
|
|
|
|
type HtlcInterceptor interface {
|
|
Start() error
|
|
Stop() error
|
|
WaitStarted() LightningClient
|
|
}
|