rag/internal/services/libraryService/libraryservice.go

15 lines
332 B
Go
Raw Normal View History

2024-07-15 13:08:48 +00:00
package libraryService
import (
"context"
"leafdev.top/leaf/rag/api/library"
)
type LibraryService struct {
library.UnimplementedLibraryServiceServer
}
func (LibraryService) ListLibrary(ctx context.Context, req *library.ListLibraryRequest) (*library.ListLibraryResponse, error) {
return &library.ListLibraryResponse{}, nil
}