Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 391 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 391 Bytes

A trivial Azure Blob Storage client.

workflow

Usage

A simple usage example:

import 'package:azblob/azblob.dart';

main() async {
  var storage = AzureStorage.parse('your connection string');
  await storage.putBlob('/yourcontainer/yourfile.txt',
    body: 'Hello, world.');
}

License

ISC