Versions in this module Expand all Collapse all v0 v0.3.0 May 13, 2022 Changes in this version + var ErrClientNotFound = errors.New("client not found") + type Server struct + func New(s store.Storer) *Server + func (s *Server) CreateClient(ctx context.Context, r *client.CreateClientRequest) (*client.GetClientResponse, error) + func (s *Server) DeleteClientByUUID(ctx context.Context, r *client.DeleteClientByUUIDRequest) (*client.DeleteClientResponse, error) + func (s *Server) GetClientByUUID(ctx context.Context, r *client.GetClientByUUIDRequest) (*client.GetClientResponse, error) + func (s *Server) GetClients(ctx context.Context, r *client.GetClientsRequest) (*client.GetClientsResponse, error) + func (s *Server) ListenGRPC(port int) error + func (s *Server) UpdateClientByUUID(ctx context.Context, r *client.UpdateClientByUUIDRequest) (*client.GetClientResponse, error)