ps/Modules/Alkami.PowerShell.Choco/Public/Get-ChocoPublicPassThruFeedUrl.ps1
2023-05-30 22:51:22 -07:00

11 lines
238 B
PowerShell

function Get-ChocoPublicPassThruFeedUrl {
<#
.SYNOPSIS
Get the Choco public pass-thru feed URL
#>
[OutputType([string])]
[CmdletBinding()]
Param()
return "https://packagerepo.orb.alkamitech.com/nuget/chocolatey.org"
}