mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-13 12:33:35 +02:00
This commit adds an itest setup which can be used to test faraday's rpc. The setup is largely copied from our existing loop server itests.
10 lines
150 B
Go
10 lines
150 B
Go
package itest
|
|
|
|
import (
|
|
"github.com/btcsuite/btclog"
|
|
)
|
|
|
|
var (
|
|
backend = btclog.NewBackend(newPrefixStdout("itest"))
|
|
log = backend.Logger("")
|
|
)
|