PSWindowsUpdater.psd1

@{
    RootModule        = 'PSWindowsUpdater.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'e1a2713e-f953-4b4e-87d1-bc4c7574f30a'
    Author            = 'Riley Foster'
    CompanyName       = 'Riley Foster'
    Copyright         = '(c) Riley Foster. All rights reserved.'
    Description       = 'Reliable helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PSWindowsUpdaterStatus', 'Initialize-PSWindowsUpdater')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}