Public/Get-PSGalleryStatus.ps1

function Get-PSGalleryStatus {
  [CmdletBinding()]
  param (
  )

  begin {
  }

  process {
    # TODO: parse it from: https://github.com/PowerShell/PowerShellGallery/blob/master/psgallery_status.md
  }

  end {
  }
}