github.com/decred/dcrlnd@v0.7.6/lnrpc/walletrpc/config_disabled.go (about) 1 //go:build no_walletrpc 2 // +build no_walletrpc 3 4 package walletrpc 5 6 const ( 7 // SubServerName is the name of the sub rpc server. We'll use this name 8 // to register ourselves, and we also require that the main 9 // SubServerConfigDispatcher instance recognize as the name of our 10 SubServerName = "WalletKitRPC" 11 ) 12 13 // Config is the primary configuration struct for the WalletKit RPC server. 14 // When the server isn't active (via the build flag), callers outside this 15 // package will see this shell of a config file. 16 type Config struct{}