zitadel/pkg/auth/api/grpc/server.go

35 lines
523 B
Go
Raw Normal View History

2020-03-24 09:14:39 +00:00
package grpc
import (
"google.golang.org/grpc"
)
var _ AuthServiceServer = (*Server)(nil)
type Config struct {
Port string
SearchLimit int
}
type Server struct {
port string
searchLimit int
}
func StartServer(conf Config) *Server {
return &Server{
port: conf.Port,
searchLimit: conf.SearchLimit,
}
}
func (s *Server) GRPCPort() string {
return s.port
}
func (s *Server) GRPCServer() (*grpc.Server, error) {
gs := grpc.NewServer()
RegisterAuthServiceServer(gs, s)
return gs, nil
}