12 lines
313 B
Go
12 lines
313 B
Go
package documents
|
|
|
|
import (
|
|
"context"
|
|
"leafdev.top/Leaf/api-platform/pkg/protos/documentService"
|
|
)
|
|
|
|
func (d *DocumentService) ListDocuments(ctx context.Context, req *documentService.ListDocumentsRequest) (*documentService.ListDocumentsResponse, error) {
|
|
|
|
return &documentService.ListDocumentsResponse{}, nil
|
|
}
|