recommender/internal/handler/grpc/documents/document.go

12 lines
317 B
Go
Raw Normal View History

2024-11-06 10:47:56 +00:00
package documents
import (
"context"
2024-11-06 12:35:16 +00:00
"leafdev.top/Ecosystem/recommender/pkg/protos/documentService"
2024-11-06 10:47:56 +00:00
)
func (d *DocumentService) ListDocuments(ctx context.Context, req *documentService.ListDocumentsRequest) (*documentService.ListDocumentsResponse, error) {
return &documentService.ListDocumentsResponse{}, nil
}