ThreadJobModule.psd1

@{
    RootModule        = 'ThreadJobModule.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'ed87b35f-5fcc-41bd-88d0-252266001379'
    Author            = 'Drew Parker'
    CompanyName       = 'Drew Parker'
    Copyright         = '(c) Drew Parker. All rights reserved.'
    Description       = 'Simple helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-ThreadJobModuleStatus', 'Initialize-ThreadJobModule')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}