package common type AmqpConnectionConfig struct { BrokerUrl string `json:"brokerUrl"` Username string `json:"username"` Password string `json:"password"` } type AmqpConnectionPoolConfig struct { Parameters AmqpConnectionConfig `json:"parameters"` PoolSize int `json:"poolSize"` }