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 }