natsio/config.go

34 lines
391 B
Go
Raw Normal View History

2021-10-08 04:23:59 +00:00
package natsio
import "time"
2021-10-08 04:23:59 +00:00
// Config ...
type Config struct {
// Connect url
URL string
// Auth user
User string
// Auth password
Password string
// TLS config
TLS *TLSConfig
// RequestTimeout
RequestTimeout time.Duration
2021-10-08 04:23:59 +00:00
}
// TLSConfig ...
type TLSConfig struct {
// Cert file
CertFilePath string
// Key file
KeyFilePath string
// Root CA
RootCAFilePath string
}