Public/Network/WebTools/Get-Weather.ps1

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

  begin {
  }

  process {
    [WeatherClient]::DisplayWeather()
  }
}