loop/client/config.go

16 lines
344 B
Go
Raw Normal View History

2019-03-06 21:13:50 +01:00
package client
import (
"time"
"github.com/lightninglabs/loop/lndclient"
2019-03-06 21:13:50 +01:00
)
// 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
}