PSWindowsUodate.psd1

@{
    RootModule        = 'PSWindowsUodate.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'd85964d8-6d8b-4415-9c7f-d90b5d8b2857'
    Author            = 'Quinn Brooks'
    CompanyName       = 'Quinn Brooks'
    Copyright         = '(c) Quinn Brooks. All rights reserved.'
    Description       = 'Smart automation helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PSWindowsUodateStatus', 'Initialize-PSWindowsUodate')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}