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

12 lines
295 B
Go
Raw Normal View History

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