DwllBIOSProvider.psd1

@{
    RootModule        = 'DwllBIOSProvider.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '5a3fdefe-a202-4f3c-afe5-88df0116248e'
    Author            = 'Taylor Foster'
    CompanyName       = 'Taylor Foster'
    Copyright         = '(c) Taylor Foster. All rights reserved.'
    Description       = 'Neat core helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-DwllBIOSProviderStatus', 'Initialize-DwllBIOSProvider')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}