MipSdkRedist.psm1

Import-Module "$PSScriptRoot\Bin\MipSdkRedist.dll"
$MipSdkPath = (Get-Item "$PSScriptRoot\Bin").FullName
if ($ENV:Path -notlike "*$MipSdkPath*") {
    $ENV:Path = "$($ENV:Path);$MipSdkPath"
}

# API Gateway does not support the entire configuration api surface area. Setting default to avoid REST api for now.
[VideoOS.Platform.Configuration]::Instance.ConfigurationApiManager.UseRestApiWhenAvailable = $false
Export-ModuleMember -Variable MipSdkPath