zitadel/internal/api/grpc/config.go
Livio Amstutz 1aaf721d92 cleanup
2020-03-25 10:41:17 +01:00

32 lines
527 B
Go

package grpc
type Config struct {
ServerPort string
GatewayPort string
CustomHeaders []string
}
func (c *Config) ToServerConfig() *ServerConfig {
return &ServerConfig{
Port: c.ServerPort,
}
}
func (c *Config) ToGatewayConfig() *GatewayConfig {
return &GatewayConfig{
Port: c.GatewayPort,
GRPCEndpoint: c.ServerPort,
CustomHeaders: c.CustomHeaders,
}
}
type ServerConfig struct {
Port string
}
type GatewayConfig struct {
Port string
GRPCEndpoint string
CustomHeaders []string
}