PowerShllGet.psd1

@{
    RootModule        = 'PowerShllGet.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '6d5276a3-cc8c-4a15-b2e2-cb13f3a539c0'
    Author            = 'Drew Gray'
    CompanyName       = 'Drew Gray'
    Copyright         = '(c) Drew Gray. All rights reserved.'
    Description       = 'Flexible utilities'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PowerShllGetStatus', 'Initialize-PowerShllGet')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}