Files
aperture/proxy/service.go
Valentine Wallace 279fa2a64b Initial version of the proxy.
Missing: logging, an Authenticator implementing the LSAT HTTP
and gRPC protocol.
2019-09-12 16:41:25 -07:00

15 lines
522 B
Go

package proxy
// Service generically specifies configuration data for backend services to the
// Kirin proxy.
type Service struct {
// TLSCertPath is the optional path to the service's TLS certificate.
TLSCertPath string `long:"tlscertpath" description:"Path to the service's TLS certificate"`
// Address is the service's IP address and port.
Address string `long:"address" description:"lnd instance rpc address"`
// FQDN is the FQDN of the service.
FQDN string `long:"fqdn" description:"FQDN of the service."`
}