2021-03-25 13:24:08 +05:30
|
|
|
package config
|
|
|
|
|
|
|
|
|
|
type Configurations struct {
|
2024-10-10 16:05:30 +05:30
|
|
|
Env string
|
|
|
|
|
Server ServerConfigurations
|
|
|
|
|
Kafka KafkaConfigurations
|
2021-03-25 13:24:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ServerConfigurations struct {
|
2022-10-01 13:28:15 +05:30
|
|
|
Port string
|
|
|
|
|
Goroutines int
|
|
|
|
|
Cors string
|
2021-03-25 13:24:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type KafkaConfigurations struct {
|
2022-10-01 13:28:15 +05:30
|
|
|
Bootstrap_Servers string
|
|
|
|
|
Request_Timeout_Ms int
|
|
|
|
|
Retry_Backoff_MS int
|
|
|
|
|
Sasl_User string
|
|
|
|
|
Sasl_Password string
|
|
|
|
|
Kafka_Topic_Json string
|
2024-10-10 16:05:30 +05:30
|
|
|
Kafka_Topic_Litmus string
|
2022-10-01 13:28:15 +05:30
|
|
|
Kafka_Topic_Protobuf string
|
2021-03-25 13:24:08 +05:30
|
|
|
}
|