Functions/Get-PSConfEUTags.ps1

Function Get-PSConfEUTags {
    [cmdletbinding()]

    param()
    $AllSessions = Invoke-RestMethod http://powershell.fun
    $Tags = $AllSessions.tags.Split(',').Trim() | Sort-Object -Unique
    $Tags
}