Skip to content

Commit

Permalink
Merge pull request #7 from Somsubro-Banerjee/dev
Browse files Browse the repository at this point in the history
Edited docs
  • Loading branch information
Somsubro-Banerjee authored Nov 8, 2023
2 parents d87011b + 372dee4 commit 4e34e0a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_blob_uploader"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license-file = "LICENSE"
description = "A simple crate to help you upload files to Azure Blob Storage"
Expand Down
22 changes: 11 additions & 11 deletions examples/azure_uploader/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
/// Creates a new `AzureBlobUploader` instance
/// Creates a new `AzureBlobUploader` instance
/// # Example
/// ```
/// use azure_blob_uploader::azure_blob_uploader::AzureBlobUploader; // Import the Crate
/// mod secrets;
/// #[tokio::main]
/// async fn main() {
/// let file_path = "/path/to/your/file"; // Define path to your file
Expand All @@ -22,6 +21,7 @@
/// }
/// }
/// ```
///
/// Initialize the `AzureBlobUploader` and call the `upload_file_to_blob_storage()` function
///
/// `file_path` will have the location of the file you want to upload.<br>
Expand All @@ -34,5 +34,4 @@
/// By default the chunk size is set in Mb, so here `10` represents 10Mb chunks. <br>
///
/// After the file transfer is completed it returns the link of the storage blob that you can leverage to use it further.
///
pub mod azure_blob_uploader;

0 comments on commit 4e34e0a

Please sign in to comment.