15 lines
359 B
Go
15 lines
359 B
Go
package external
|
|
|
|
import (
|
|
"git.loafle.net/overflow/commons-go/config/external/grpc"
|
|
"git.loafle.net/overflow/commons-go/config/external/kafka"
|
|
"git.loafle.net/overflow/commons-go/config/external/redis"
|
|
)
|
|
|
|
type ExternalConfig struct {
|
|
GRPC *grpc.GRPConfig `json:"grpc"`
|
|
Kafka *kafka.KafkaConfig `json:"kafka"`
|
|
Redis *redis.RedisConfig `json:"redis"`
|
|
}
|
|
|