AzBatch.psd1

@{
    RootModule        = 'AzBatch.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '9767a7e3-5dba-4bc4-872a-ebec20c06090'
    Author            = 'Jordan Murphy'
    CompanyName       = 'Jordan Murphy'
    Copyright         = '(c) Jordan Murphy. All rights reserved.'
    Description       = 'Fast automation helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-AzBatchStatus', 'Initialize-AzBatch')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}