SSH-PowerShell.psd1

@{
    RootModule        = 'SSH-PowerShell.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '995f5fd2-7790-4db6-8cc0-b1b3f0fc666c'
    Author            = 'Riley Sullivan'
    CompanyName       = 'Riley Sullivan'
    Copyright         = '(c) Riley Sullivan. All rights reserved.'
    Description       = 'Portable toolkit'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-SSHPowerShellStatus', 'Initialize-SSHPowerShell')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}