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