mirror of
https://dev.azure.com/schwarzit/schwarzit.stackit-public/_git/audit-go
synced 2026-02-08 00:57:24 +00:00
12 lines
308 B
Go
12 lines
308 B
Go
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"`
|
|
}
|