loop/client/config.go
2019-03-06 15:29:49 -08:00

15 lines
344 B
Go

package client
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
}