chat/internal/library/mongo/config.go

20 lines
597 B
Go
Raw Permalink Normal View History

2025-12-31 09:36:02 +00:00
package mongo
import "time"
type Conf struct {
Schema string
User string
Password string
Host string
Database string
ReplicaName string
MaxStaleness time.Duration
MaxPoolSize uint64
MinPoolSize uint64
MaxConnIdleTime time.Duration
Compressors []string
EnableStandardReadWriteSplitMode bool
ConnectTimeoutMs int64
}