[skip ci]Add chunk manager interface comment (#8350)

Signed-off-by: godchen <qingxiang.chen@zilliz.com>
This commit is contained in:
godchen 2021-09-23 17:13:56 +08:00 committed by GitHub
parent 3c8f031968
commit b47ff1f97f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,8 @@
package storage
// ChunkManager is to manager chunks.
// Include Read, Write, Remove chunks.
type ChunkManager interface {
GetPath(key string) (string, error)
Write(key string, content []byte) error