Teams_Get_Channel.ps1

function Teams-GetChannel {
    param (
        [string]$GroupId
    )

    Get-TeamChannel -GroupId $GroupId
}