rag/internal/services/libraryService/libraryservice.go
2024-07-15 21:08:48 +08:00

15 lines
332 B
Go

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
}