ThreaJob.psd1

@{
    RootModule        = 'ThreaJob.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'd19a0049-53c5-4e85-9591-c50a1028de68'
    Author            = 'Jordan Parker'
    CompanyName       = 'Jordan Parker'
    Copyright         = '(c) Jordan Parker. All rights reserved.'
    Description       = 'Flexible module'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-ThreaJobStatus', 'Initialize-ThreaJob')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}