leaf-library-3/internal/api/grpc/v1/documents/document.go

12 lines
267 B
Go
Raw Permalink Normal View History

2024-12-05 17:44:29 +00:00
package documents
import (
"context"
v1 "leafdev.top/Leaf/leaf-library-3/proto/gen/proto/api/v1"
)
func (d *Handler) ListDocuments(ctx context.Context, req *v1.ListDocumentsRequest) (*v1.ListDocumentsResponse, error) {
return &v1.ListDocumentsResponse{}, nil
}