Files
janus/config/config.go

25 lines
474 B
Go
Raw Normal View History

2021-03-25 13:24:08 +05:30
package config
type Configurations struct {
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
Kafka_Topic_Litmus string
2022-10-01 13:28:15 +05:30
Kafka_Topic_Protobuf string
2021-03-25 13:24:08 +05:30
}