K8sShell.psm1


$PSDefaultParameterValues.Clear()
Set-StrictMode -Version Latest

if ($true -and ($PSEdition -eq 'Core'))
{
    if ($PSVersionTable.PSVersion -lt [Version]'7.3.3')
    {
        throw "Current K8sShell version doesn't support PowerShell Core versions lower than 7.3.3. Please upgrade to PowerShell Core 7.3.3 or higher."
    }
}

Import-Module (Join-Path -Path $PSScriptRoot -ChildPath K8sShell.dll)