Files
lspd/htlc_interceptor.go
2022-11-21 14:23:33 +01:00

8 lines
109 B
Go

package main
type HtlcInterceptor interface {
Start() error
Stop() error
WaitStarted() LightningClient
}