( account: Account, url: Link, )
| 153 | * Endpoint documentation: https://docs.github.com/en/rest/commits/commits#get-a-commit |
| 154 | */ |
| 155 | export async function getCommit( |
| 156 | account: Account, |
| 157 | url: Link, |
| 158 | ): Promise<GetCommitResponse> { |
| 159 | return followUrl<GetCommitResponse>(account, url); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Gets a specified commit comment. |
no test coverage detected