natsio/config.go

37 lines
427 B
Go
Raw Permalink 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
2022-12-04 15:10:05 +00:00
// Stream name
StreamName string
2021-10-08 04:23:59 +00:00
}
// TLSConfig ...
type TLSConfig struct {
// Cert file
CertFilePath string
// Key file
KeyFilePath string
// Root CA
RootCAFilePath string
}