From e30c492cf89aefbbe5c49b47733722f3dc2fa514 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Fri, 17 Oct 2025 13:16:40 +0200 Subject: [PATCH] Update README --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 2cdd457..e7bf1a0 100644 --- a/README.md +++ b/README.md @@ -174,8 +174,6 @@ onProgress := func(read, total int, percent float64, err error) { cid, err := codex.UploadReader(UploadOptions{filepath: "hello.txt", onProgress: onProgress}, buf) ``` -Caveat: once started, the upload cannot be cancelled. - #### file The `file` strategy allows you to upload a file on Codex using the path. @@ -192,8 +190,6 @@ onProgress := func(read, total int, percent float64, err error) { cid, err := codex.UploadFile(UploadOptions{filepath: "./testdata/hello.txt", onProgress: onProgress}) ``` -Caveat: once started, the upload cannot be cancelled. - #### chunks The `chunks` strategy allows you to manage the upload by yourself. It requires more code @@ -249,8 +245,6 @@ opt := DownloadStreamOptions{ err := codex.DownloadStream(cid, opt) ``` -Caveat: once started, the download cannot be cancelled. - #### chunks The `chunks` strategy allows to manage the download by yourself. It requires more code