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
|
|
|
|
}
|