We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc449de commit 9e86cfeCopy full SHA for 9e86cfe
internal/catalogmetadata/client/client.go
@@ -17,9 +17,10 @@ import (
17
// catalog contents from catalogd.
18
type Fetcher interface {
19
// FetchCatalogContents fetches contents from the catalogd HTTP
20
- // server for the catalog provided. It returns an io.ReadCloser
21
- // containing the FBC contents that the caller is expected to close.
22
- // returns an error if any occur.
+ // server for the catalog provided. It returns a fs.FS containing the FBC contents.
+ // Each sub directory contains FBC for a single package
+ // and the directory name is package name.
23
+ // Returns an error if any occur.
24
FetchCatalogContents(ctx context.Context, catalog *catalogd.ClusterCatalog) (fs.FS, error)
25
}
26
0 commit comments