Public/Get-YouTubeInsights.ps1

function Get-YouTubeInsights {
  [CmdletBinding()]
  param (
    [parameter(Mandatory = $true)]
    [Alias('u')]
    [string]$Url
  )

  begin {
  }

  process {
    throw [System.NotImplementedException]::new("Function Not Implemented yet. (WIP)")
  }

  end {
  }
}