mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-18 10:06:51 +01:00
lnrpc+subserver_cfg: add configs for autopilot sub-server
This commit is contained in:
17
lnrpc/autopilotrpc/config_active.go
Normal file
17
lnrpc/autopilotrpc/config_active.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// +build autopilotrpc
|
||||
|
||||
package autopilotrpc
|
||||
|
||||
import (
|
||||
"github.com/lightningnetwork/lnd/autopilot"
|
||||
)
|
||||
|
||||
// Config is the primary configuration struct for the autopilot RPC server. It
|
||||
// contains all the items required for the rpc server to carry out its
|
||||
// duties. The fields with struct tags are meant to be parsed as normal
|
||||
// configuration options, while if able to be populated, the latter fields MUST
|
||||
// also be specified.
|
||||
type Config struct {
|
||||
// Manager is the running autopilot manager.
|
||||
Manager *autopilot.Manager
|
||||
}
|
||||
6
lnrpc/autopilotrpc/config_default.go
Normal file
6
lnrpc/autopilotrpc/config_default.go
Normal file
@@ -0,0 +1,6 @@
|
||||
// +build !autopilotrpc
|
||||
|
||||
package autopilotrpc
|
||||
|
||||
// Config is empty for non-autopilotrpc builds.
|
||||
type Config struct{}
|
||||
Reference in New Issue
Block a user