lnd.xprv/lnrpc/signrpc/config_default.go
Olaoluwa Osuntokun 8971931aa3
lnrpc/signrpc: add lnrpc.SubServerDriver for signrpc
In this commit, we create a lnrpc.SubServerDriver for signrpc. Note that
this file will only have its init() method executed if the proper build
flag is on. As a result, only if the build flag is set, will the RPC
server be registered, and visible at the packge lnrpc level for the root
server to manipulate.
2018-11-28 20:57:03 -08:00

7 lines
101 B
Go

// +build !signrpc
package signrpc
// Config is empty for non-signrpc builds.
type Config struct{}