class ActiveStorage::Service::AzureStorageService
def initialize(storage_account_name:, storage_access_key:, container:, public: false, **options)
def initialize(storage_account_name:, storage_access_key:, container:, public: false, **options) @client = Azure::Storage::Blob::BlobService.create(storage_account_name: storage_account_name, storage_access_key: storage_access_key, **options) @signer = Azure::Storage::Common::Core::Auth::SharedAccessSignature.new(storage_account_name, storage_access_key) @container = container @public = public end