zitadel/pkg/admin/api/api.go

29 lines
549 B
Go
Raw Normal View History

2020-03-25 09:54:45 +00:00
package api
import (
"context"
"github.com/caos/zitadel/internal/api/grpc/server"
"github.com/caos/zitadel/pkg/admin/api/grpc"
)
type API struct {
grpcServer grpc.Server
gateway grpc.Gateway
}
type Config struct {
GRPCServer grpc.Config
Gateway grpc.GatewayConfig
}
func Start(ctx context.Context, conf *Config) error {
api := &API{
grpcServer: *grpc.StartServer(conf.GRPCServer),
gateway: *grpc.StartGateway(conf.Gateway),
}
server.StartServer(ctx, &api.grpcServer)
server.StartGateway(ctx, &api.gateway)
return nil
}