15 lines
332 B
Go
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
|
|
}
|