Functions/Public/Set-GitHubGist.ps1

function Set-GitHubGist {
    <#
    .Synopsis
    This command updates a GitHub Gist code snippet.
    
    .Description
    This command is responsible for updating GitHub Gist code snippets.
    
    .Notes
      
    .Link
    https://trevorsullivan.net
    https://developer.github.com/v3/gists
    #>

    [CmdletBinding()]
    param (
    )
    
    $ApiCall = @{
        Body = '';
        RestMethod = '';
        Method = '';
    }
    
    Invoke-GitHubApi @ApiCall;
}