Private/Get-Tag.ps1
|
function Get-Tag { [CmdletBinding()] param ( [Parameter()] [ValidateSet('table', 'json')] [string]$Output = 'table' ) process { $client = [GammaClient]::new() $result = $client.Get("/tags") [PolymarketOutput]::Format($result, $Output) } } |