api-platform/internal/handler/grpc/documents/document.go

12 lines
313 B
Go
Raw Normal View History

2024-11-21 11:25:32 +00:00
package documents
import (
"context"
2024-11-22 17:55:15 +00:00
"leafdev.top/Leaf/api-platform/pkg/protos/documentService"
2024-11-21 11:25:32 +00:00
)
func (d *DocumentService) ListDocuments(ctx context.Context, req *documentService.ListDocumentsRequest) (*documentService.ListDocumentsResponse, error) {
return &documentService.ListDocumentsResponse{}, nil
}