loop/config.go

15 lines
342 B
Go

package loop
import (
"time"
"github.com/lightninglabs/loop/lndclient"
)
// clientConfig contains config items for the swap client.
type clientConfig struct {
LndServices *lndclient.LndServices
Server swapServerClient
Store swapClientStore
CreateExpiryTimer func(expiry time.Duration) <-chan time.Time
}